forked from wernerdweight/ApiAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·61 lines (61 loc) · 1.79 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
{
"name": "wernerdweight/api-auth-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle providing API authentication and authorization.",
"keywords": [
"api",
"authorization",
"authentication",
"bundle"
],
"homepage": "https://github.com/wernerdweight/ApiAuthBundle",
"license": "MIT",
"authors": [
{
"name": "Werner Dweight Solutions",
"email": "info@wds.blue"
}
],
"require": {
"php": ">=7.3.0",
"symfony/framework-bundle": "^4.0|^5.0",
"thecodingmachine/safe": "^1.0",
"wernerdweight/ra": "^1.0",
"wernerdweight/enhanced-exception": "^1.0",
"symfony/security-bundle": "^4.3|^5.0",
"symfony/orm-pack": "^1.0|^2.0",
"wernerdweight/token-generator": "^1.0"
},
"require-dev": {
"wernerdweight/cs": "^2.0",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"symfony/phpunit-bridge": "^5.0"
},
"suggest": {
"wernerdweight/doctrine-crud-api-bundle": "^1.0"
},
"autoload": {
"psr-4": {
"WernerDweight\\ApiAuthBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WernerDweight\\ApiAuthBundle\\Tests\\": "tests"
}
},
"scripts": {
"fix": "ecs check ./src/ ./tests/ --config ecs.yaml --fix",
"phpstan": "phpstan analyse ./src/ ./tests/ --level max",
"phpmd": "phpmd ./src/ text vendor/wernerdweight/cs/phpmd.xml",
"ecs": "ecs check ./src/ ./tests/ --config ecs.yaml",
"ecs-fix": "ecs check ./src/ ./tests/ --config ecs.yaml --fix",
"phpunit": "phpunit"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^4.3|^5.0"
}
}
}