-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
49 lines (49 loc) · 1.32 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
{
"name": "burzum/cakephp-service-layer",
"type": "cakephp-plugin",
"license": "MIT",
"description": "Service layer and domain / business model implementation for CakePHP",
"authors": [
{
"name": "Florian Krämer",
"role": "Maintainer"
},
{
"name": "Mark Scherer",
"role": "Contributor"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2.0",
"cakephp/cakephp-codesniffer": "^4.5",
"dereuromark/cakephp-ide-helper": "^2.0.0",
"phpstan/phpstan": "^1.0.0"
},
"autoload": {
"psr-4": {
"Burzum\\CakeServiceLayer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/test_app/src/",
"Burzum\\CakeServiceLayer\\Test\\": "tests/",
"Cake\\Test\\Fixture\\": "vendor/cakephp/cakephp/tests/Fixture/"
}
},
"scripts": {
"test": "phpunit",
"stan": "vendor/bin/phpstan analyze",
"cs-check": "phpcs --colors --parallel=16",
"cs-fix": "phpcbf --colors --parallel=16"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}