-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.1 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
{
"name": "liquidbox/silex-plates",
"description": "A Plates template engine service provider for the Silex micro-framework",
"keywords": [
"silex",
"service",
"provider",
"plates",
"template",
"engine",
"php",
"html",
"thephpleague",
"league"
],
"license": "MIT",
"authors": [
{
"name": "Jonathan-Paul Marois",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"silex/silex": "^2.0",
"league/plates": "^3.0"
},
"require-dev": {
"symfony/security": "^2.6|3.0",
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^4.0|^5.0"
},
"suggest": {
"symfony/security": "For using the Security extension"
},
"conflict": {
"symfony/security": "<2.6"
},
"autoload": {
"psr-4": {
"LiquidBox\\": "src/LiquidBox"
}
},
"autoload-dev": {
"psr-4": {
"LiquidBox\\Tests\\": "tests/LiquidBox/Tests"
}
}
}