-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.34 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
{
"type": "symfony-bundle",
"name": "ordermind/logical-authorization-bundle",
"version": "0.17.8",
"license": "MIT",
"description": "Bundle for Symfony 4 supporting flexible and convenient model, field and route level permissions.",
"keywords": ["authorization"],
"authors": [
{
"name": "Kristofer Tengström",
"email": "ordermind@gmail.com"
}
],
"autoload": {
"psr-4": {
"Ordermind\\LogicalAuthorizationBundle\\": ""
}
},
"require": {
"doctrine/common": "^2.0",
"ordermind/logical-permissions": "^2.0",
"symfony/cache": "^4.1",
"symfony/config": "^4.1",
"symfony/console": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/event-dispatcher": "^4.1",
"symfony/expression-language": "^4.1",
"symfony/http-foundation": "^4.1",
"symfony/routing": "^4.1",
"symfony/security-bundle": "^4.1",
"symfony/yaml": "^4.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8",
"sensio/framework-extra-bundle": ">=3.0",
"symfony/monolog-bundle": ">=3.0",
"symfony/twig-bundle": ">=3.0",
"symfony/browser-kit": ">=4.0",
"squizlabs/php_codesniffer": ">=3.0",
"escapestudios/symfony2-coding-standard": ">=3.0"
}
}