-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
65 lines (65 loc) · 1.74 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
57
58
59
60
61
62
63
64
65
{
"name": "bitexpert/sulu-securitytxt-bundle",
"type": "sulu-bundle",
"description": "Sulu bundle for managing security.txt configuration",
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"license": "MIT",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "S.Hochdoerfer@bitExpert.de",
"homepage": "http://www.bitExpert.de"
}
],
"autoload": {
"psr-4": {
"BitExpert\\Sulu\\SecuritytxtBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"BitExpert\\Sulu\\SecuritytxtBundle\\Tests\\": "Tests"
}
},
"require": {
"php": "^8.2 | ^8.3",
"sulu/sulu": "^2.6",
"symfony/dependency-injection": "^7.1",
"symfony/framework-bundle": "^6.0",
"symfony/http-foundation": "^7.1",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^7.1"
},
"require-dev": {
"jackalope/jackalope": "^1.4",
"jackalope/jackalope-doctrine-dbal": "^1.8",
"madewithlove/license-checker": "^1.4",
"phly/keep-a-changelog": "^2.12",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^11.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"check-license": "vendor/bin/license-checker check",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
}
}