-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.43 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
{
"name": "gutocf/page-title",
"description": "Page Title component for CakePHP 4",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"title",
"components"
],
"homepage": "https://github.com/gutocf/page-title",
"license": "MIT",
"authors": [
{
"name": "Augusto César Ferreira",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0.1"
},
"require-dev": {
"cakephp/bake": "^3.0.0",
"phpunit/phpunit": "^10.1.0",
"phpstan/phpstan": "^1.5",
"cakedc/cakephp-phpstan": "^3.0",
"squizlabs/php_codesniffer": "^3.6",
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"Gutocf\\PageTitle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gutocf\\PageTitle\\Test\\": "tests"
}
},
"scripts": {
"coverage": "vendor/bin/phpunit --colors=always --bootstrap=tests/bootstrap.php --configuration=phpunit.xml --coverage-html=tmp/_reports/coverage/",
"phpstan": "vendor/bin/phpstan",
"phpcs": "phpcs --colors -p -s --standard=CakePHP src/ tests/",
"phpcbf": "phpcbf --colors -p -s --standard=CakePHP src/ tests/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}