-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.15 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "jayparmar271/cakephp-magic-query",
"description": "MagicQuery plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"plugin",
"cakephp",
"cakephp-plugin",
"rapid-query",
"cakephp3",
"cakephp4"
],
"license": "MIT",
"require": {
"symfony/options-resolver": "^5.2",
"cakephp/cakephp": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^5.7.14|^6.0",
"cakephp/cakephp-codesniffer": "^3.0",
"phpstan/phpstan": "^0.12.60"
},
"autoload": {
"psr-4": {
"MagicQuery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MagicQuery\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"cs-fix": "phpcbf --extensions=php ./src ./tests",
"cs-check": "phpcs -p --extensions=php ./src ./tests",
"test": "phpunit --colors=always",
"test-setup": "cp phpunit.xml.dist phpunit.xml",
"analyse": "vendor/bin/phpstan analyse src tests"
},
"prefer-stable": true,
"minimum-stability": "dev"
}