-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
56 lines (56 loc) · 1.52 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
52
53
54
55
56
{
"name": "camelot/canonical-url-bundle",
"type": "symfony-bundle",
"description": "Canonical URL Symfony bundle",
"license": "MIT",
"authors": [
{
"name": "Andy Palmer",
"email": "andy@andypalmer.me"
},
{
"name": "Gawain Lynch",
"email": "gawain.lynch@gmail.com"
}
],
"require": {
"php": "^8.0",
"symfony/dependency-injection": "^6.0",
"symfony/config": "^6.0",
"symfony/routing": "^6.0",
"symfony/http-kernel": "^6.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"Camelot\\CanonicalUrlBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\CanonicalUrlBundle\\Tests\\": "tests"
}
},
"require-dev": {
"camelot/coding-style": "^3.0",
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16",
"symfony/browser-kit": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/phpunit-bridge": "^4.3.4 || ^5.0",
"symfony/yaml": "^6.0",
"vimeo/psalm": "^4.22"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --show-progress=dots -v",
"static": "vendor/bin/psalm --find-dead-code",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-text",
"suite": [
"@lint",
"@static",
"@coverage"
]
}
}