This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (52 loc) · 1.54 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
{
"name": "spomky-labs/role-hierarchy-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Role Hierarchy Bundle",
"keywords": ["role", "hierarchy"],
"homepage": "https://github.com/Spomky-Labs/RoleHierarchyBundle",
"license": "MIT",
"authors": [
{
"name": "Florent Morselli"
}
],
"require": {
"php": ">=5.6",
"symfony/security-bundle": "^2.8|^3.0",
"doctrine/doctrine-bundle": "^1.0"
},
"require-dev": {
"symfony/framework-bundle": "^2.8|^3.0",
"symfony/class-loader": "^2.8|^3.0",
"symfony/yaml": "^2.8|^3.0",
"symfony/finder": "^2.8|^3.0",
"symfony/validator": "^2.8|^3.0",
"doctrine/doctrine-fixtures-bundle": "^2.0",
"behat-extension/doctrine-data-fixtures-extension": "dev-master",
"behat/behat": "^3.0",
"behat/symfony2-extension": "^2.0",
"behat/mink": "*",
"behat/mink-extension": "^2.1",
"behat/mink-browserkit-driver": "*",
"doctrine/orm": "^2.2",
"symfony/var-dumper": "^2.8|^3.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"SpomkyLabs\\RoleHierarchyBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"SpomkyLabs\\TestRoleHierarchyBundle\\": "Tests/TestRoleHierarchyBundle/",
"SpomkyLabs\\TestRoleHierarchyBundle\\Features\\Context\\": "Tests/Context"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}