-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 967 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 967 Bytes
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
{
"name": "damax/api-auth-bundle",
"type": "symfony-bundle",
"description": "Authentication via api key or JWT.",
"license": "MIT",
"require": {
"php": "^7.1",
"symfony/security-bundle": "^3.4|^4.0|^5.0"
},
"require-dev": {
"doctrine/dbal": "^2.7",
"friendsofphp/php-cs-fixer": "^2.14",
"lcobucci/jwt": "4.*@dev",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"nelmio/api-doc-bundle": "^3.3",
"php-coveralls/php-coveralls": "^2.0",
"predis/predis": "^1.1",
"symfony/framework-bundle": "^4.1",
"symfony/phpunit-bridge": "^4.0"
},
"autoload": {
"psr-4": { "Damax\\Bundle\\ApiAuthBundle\\": "" }
},
"scripts": {
"cs": "php-cs-fixer fix",
"test": "simple-phpunit",
"test-cc": "phpdbg -qrr ./vendor/bin/simple-phpunit --coverage-html=build/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}