forked from smartbooster/authentication-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.2 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "smartbooster/authentication-bundle",
"type": "symfony-bundle",
"description": "SMART BOOSTER authentication bundle",
"keywords": [],
"homepage": "https://github.com/smartbooster/authentication-bundle",
"license": "MIT",
"authors": [
{
"name": "Nicolas Bastien",
"email": "nicolas.bastien@smartbooster.io",
"homepage": "https://www.smartbooster.io"
}
],
"require": {
"smartbooster/sonata-bundle": "^1.0",
"yokai/security-token-bundle": "^2.2",
"nelmio/alice": "^2.3 || ^3.0",
"symfony/mailer": "^4.4 || ^5.1",
"symfony/twig-bundle": "^4.4 || ^5.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"sebastian/phpcpd": "^2.0",
"phpmetrics/phpmetrics": "^2.5",
"phpstan/phpstan": "^0.12.3",
"phpstan/phpstan-symfony": "^0.12.1",
"theofidry/alice-data-fixtures": "^1.1",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Smart\\AuthenticationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smart\\AuthenticationBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}