-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.18 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": "avolle/cakephp-title",
"description": "A title plugin for CakePHP",
"homepage": "https://avolle.com",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1.0",
"phpstan/phpstan": "^1.10.33"
},
"autoload": {
"psr-4": {
"Avolle\\Title\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Avolle\\Title\\Test\\": "tests",
"Avolle\\Title\\Test\\Fixture\\": "tests",
"TestApp\\": "tests/test_app/TestApp"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"stan": "phpstan analyse",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}