-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 1.03 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
{
"name": "googlechromelabs/ise-web-security-bundle",
"description": "Web security bundle for Symfony create by google OSS",
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Matthew Henry",
"email": "matthewhenry@google.com"
}
],
"autoload" : {
"psr-4": {
"Ise\\WebSecurityBundle\\": ""
}
},
"require": {
"symfony/config": "^4.3 || ^5.1",
"symfony/dependency-injection": "^4.3 ||^5.1",
"symfony/http-kernel": "^4.3 || ^5.1.5",
"symfony/framework-bundle": "^4.3 || ^5.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.3 || ^5.1",
"php-coveralls/php-coveralls": "^2.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run .",
"lint-fix": "vendor/bin/php-cs-fixer -vvv fix --using-cache=no .",
"test": "vendor/bin/simple-phpunit --colors=always"
}
}