forked from jshedde/SwitchUserStatelessBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.69 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
{
"name": "lafourchette/switch-user-stateless-bundle",
"type": "symfony-bundle",
"description": "Bundle to use impersonating on Symfony API",
"keywords": [
"REST",
"API",
"Impersonating"
],
"license": "MIT",
"authors": [
{
"name": "Vincent Chalamon",
"email": "[email protected]",
"homepage": "http://blog.vincent-chalamon.fr"
}
],
"require": {
"php": ">=5.5",
"symfony/http-kernel": "^2.3|^3.0",
"symfony/dependency-injection": "^2.3|^3.0",
"symfony/http-foundation": "^2.3|^3.0",
"symfony/security-core": "^2.3|^3.0",
"symfony/serializer": "^2.3|^3.0",
"symfony/config": "^2.3|^3.0",
"symfony/security-bundle": "^2.3|^3.0",
"symfony/security-http": "^2.3|^3.0",
"sensio/framework-extra-bundle": "^2.3|^3.0"
},
"require-dev": {
"phpunit/phpunit": "<5.0",
"api-platform/core": "^1.1@beta",
"doctrine/orm": "^2.2,>=2.2.3",
"doctrine/doctrine-bundle": "^1.2",
"behat/behat": "^3.0",
"behat/symfony2-extension": "^2.0",
"symfony/browser-kit": "^3.0"
},
"suggest": {
"psr/log": "To log user requests",
"symfony/event-dispatcher": "To dispatch a switch user event",
"api-platform/core": "Connect with API Platform"
},
"autoload": {
"psr-4": {
"SwitchUserStatelessBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"SwitchUserStatelessBundle\\Tests\\": "features/app"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}