-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name": "ishanvyas22/cakephp-inertiajs",
"description": "The CakePHP adapter for Inertia.js.",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"cakephp/cakephp": "^5.0",
"ishanvyas22/asset-mix": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"cakephp/cakephp-codesniffer": "^5.1",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Inertia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inertia\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src"
}
},
"scripts": {
"check": [
"@cs-check",
"@analyse",
"@test"
],
"cs-fix": "phpcbf --extensions=php ./src ./tests",
"cs-check": "phpcs -p --extensions=php ./src ./tests",
"analyse": "phpstan analyse --ansi --memory-limit=-1",
"test": "phpunit --colors=always"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}