-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.54 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "liqueurdetoile/cakephp-orm-json",
"description": "Cakephp plugin to provide easy control over JSON type fields in database",
"type": "cakephp-plugin",
"license": "MIT",
"version": "2.0.0-dev",
"authors": [
{
"name": "Liqueur de Toile",
"homepage": "https://liqueurdetoile.com"
}
],
"keywords": [
"database",
"orm",
"json",
"json fields",
"json data",
"json_extract",
"mysql",
"behavior",
"table",
"entity",
"trait",
"select",
"order",
"sort",
"where",
"filter"
],
"require": {
"php": "^7.2|^8.0",
"cakephp/cakephp": ">=3.7 <5",
"adbario/php-dot-notation": "^2.1",
"mustache/mustache": "^2.13"
},
"require-dev": {
"phpunit/phpunit": "^6|^8.5|^9.3",
"phpstan/phpstan": "^0.10|^1.8",
"phpstan/extension-installer": "^1.1",
"cakephp/cakephp-codesniffer": "^4.5",
"cakephp/migrations": "^2.4|^3.2",
"fakerphp/faker": "^1.20",
"cakedc/cakephp-phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^1.2",
"vierge-noire/cakephp-test-suite-light": "^2.4"
},
"autoload": {
"psr-4": {
"Lqdt\\OrmJson\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lqdt\\OrmJson\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"test": "phpunit && phpstan analyze --memory-limit 1G",
"doc": "php phpDocumentor.phar -d ./src -t ./docs",
"stan": "phpstan analyze --memory-limit 1G",
"stan-github": "phpstan analyze --memory-limit 1G --error-format=github",
"enable-compat": [
"composer remove cakedc/cakephp-phpstan phpstan/phpstan-phpunit vierge-noire/cakephp-test-suite-light --dev",
"composer update --prefer-lowest",
"composer require vierge-noire/cakephp-test-suite-light:^1.2 vierge-noire/cakephp-test-migrator:^1.5 --dev --prefer-lowest -W"
],
"disable-compat": [
"composer remove vierge-noire/cakephp-test-suite-light vierge-noire/cakephp-test-migrator --dev",
"composer update",
"composer require --dev cakedc/cakephp-phpstan phpstan/phpstan-phpunit vierge-noire/cakephp-test-suite-light"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}