forked from Sylius/SyliusRbacBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (57 loc) · 1.46 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
{
"name": "sylius/rbac-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Role-Based-Access-Control",
"keywords": ["security", "rbac", "roles", "permissions"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^5.6|^7.0",
"doctrine/doctrine-cache-bundle": "~1.0",
"sylius/rbac": "^1.0",
"sylius/resource-bundle": "^1.0",
"symfony/framework-bundle": "^2.8"
},
"require-dev": {
"phpspec/phpspec": "^3.0",
"doctrine/orm": "^2.4.8,<2.5",
"symfony/form": "^2.8",
"twig/twig": "^1.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sylius\\Bundle\\RbacBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Sylius\\Bundle\\RbacBundle\\spec\\": "spec/" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}