forked from burzum/cakephp-service-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.2 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
{
"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": ">=7.2",
"cakephp/cakephp": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.0",
"cakephp/cakephp-codesniffer": "^3.0",
"dereuromark/cakephp-ide-helper": "^1.0",
"phpstan/phpstan": "^0.12.14"
},
"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": {
"stan": "vendor/bin/phpstan analyze src/",
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/"
}
}