-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.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
{
"name": "cakephp/app",
"description": "CakePHP skeleton app",
"homepage": "https://cakephp.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.1",
"bzzhh/pezos": "^0.1.5",
"bzzhh/tzkt-php-client": "^0.2.2",
"cakephp/authentication": "^3.0",
"cakephp/cakephp": "^5.0.1",
"cakephp/migrations": "^4.0.0",
"cakephp/plugin-installer": "^2.0",
"friendsofcake/bootstrap-ui": "^5.0",
"mobiledetect/mobiledetectlib": "^4.8.03",
"passchn/cakephp-vite": "^2.4"
},
"require-dev": {
"cakedc/cakephp-phpstan": "^3.1",
"cakephp/bake": "^3.0.0",
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/debug_kit": "^5.0.0",
"dereuromark/cakephp-ide-helper": "^2.2",
"fig-r/psr2r-sniffer": "^2.1",
"josegonzalez/dotenv": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.1.0",
"symplify/phpstan-rules": "^13.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs -s --colors -p",
"cs-fix": "phpcbf --colors -p",
"stan": "phpstan analyse",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}