-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
82 lines (82 loc) · 2.63 KB
/
composer.json
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
82
{
"name":"friendsofcake/crud-json-api",
"description":"Listener for building CakePHP Crud APIs following the JSON API specification.",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"crud",
"api",
"jsonapi",
"json api"
],
"homepage":"https://github.com/FriendsOfCake/crud-json-api",
"license":"MIT",
"authors":[
{
"name":"Bravo-Kernel",
"role":"Author",
"homepage":"http://github.com/bravo-kernel"
},
{
"name":"Marlin Cremers",
"role":"Contributor",
"homepage":"https://github.com/Marlinc"
},
{
"name":"Walther Lalk",
"role":"Contributor",
"homepage":"https://github.com/dakota"
}
],
"require": {
"php": ">=7.4.0",
"cakephp/cakephp": "^4.4.1",
"friendsofcake/crud": "^6.0",
"laravel-json-api/neomerx-json-api": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "~8.5 || ^9.3",
"friendsofcake/cakephp-test-utilities": "^2.0.1",
"friendsofcake/search": "^6.2.2",
"cakephp/cakephp-codesniffer": "^4.0",
"dms/phpunit-arraysubset-asserts": "^0.4.0"
},
"autoload": {
"psr-4": {
"CrudJsonApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CrudJsonApi\\Test\\": "tests",
"CrudJsonApi\\Test\\App\\": "tests/test_app/src",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"suggest": {
"friendsofcake/search": "Provides search capabilities for the Crud plugin."
},
"support":{
"source":"https://github.com/FriendsOfCake/crud-json-api",
"issues":"https://github.com/FriendsOfCake/crud-json-api/issues",
"wiki":"http://crud.readthedocs.org/en/latest/",
"irc":"irc://irc.freenode.org/friendsofcake"
},
"scripts": {
"cs-check": "phpcs -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:~1.8.0 psalm/phar:~4.26.0 && mv composer.backup composer.json",
"phpstan": "phpstan analyse --memory-limit=3G src/",
"psalm": "psalm.phar --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"test": "phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}