-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.27 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
{
"name": "robotusers/cakephp-di",
"description": "PSR-11 compatible CakePHP Dependency Injection Container abstraction plugin",
"homepage": "https://github.com/robotusers/cakephp-di",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.2",
"cakephp/cakephp": "^4.0,<4.2",
"psr/container": "^1.0"
},
"authors": [
{
"name": "Robert Pustułka",
"email": "[email protected]"
}
],
"require-dev": {
"cakephp/cakephp-codesniffer": "*",
"phpunit/phpunit": "^8.0",
"cakephp/cakephp": "4.0.*"
},
"autoload": {
"psr-4": {
"Robotusers\\Di\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Robotusers\\Di\\Test\\": "tests/",
"TestApp\\": "tests/test_app/"
}
},
"scripts": {
"check": [
"@test",
"@stan-check",
"@cs-check"
],
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors ./src ./tests",
"stan-check": "phpstan analyse ./src -l 7",
"test": "phpunit --colors=always --coverage-clover=coverage.xml"
}
}