-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·47 lines (47 loc) · 1.4 KB
/
composer.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.4 KB
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
{
"name": "radvance/blog-app",
"description": "Radvance Blog example",
"homepage": "https://github.com/radvance/blogapp",
"keywords": ["linkorb", "framework", "tests", "behat"],
"type": "application",
"license": "MIT",
"authors": [{
"name": "LinkORB",
"email": "engineering@linkorb.com",
"role": "Development"
}],
"require": {
"silex/silex": "2.0.x-dev#a3881a5a2fc7e0233307c8240d4adc909a559b49",
"symfony/yaml": "~2.6",
"symfony/config": "~2.6",
"symfony/security": "~2.6",
"symfony/console": "~2.6",
"symfony/form": "~2.7",
"symfony/translation": "~2.7",
"twig/twig": ">=1.8,<2.0-dev",
"symfony/twig-bridge": "~2.7",
"userbase/client": "~0.0",
"oyejorge/less.php": "~1.5",
"monolog/monolog": "^1.17"
},
"require-dev": {
"behat/behat": "^3.0",
"behat/mink": "^1.6",
"behat/mink-extension": "^2.0",
"behat/mink-goutte-driver": "^1.1",
"dbtk/schema-loader": "~2.1",
"linkorb/haigha": "~2.1",
"linkorb/conventions-checker": "~1.1"
},
"extra": {
"grumphp": {
"config-default-path": "vendor/linkorb/conventions-checker/config/lib/grumphp.yml"
}
},
"autoload": {
"psr-4": {
"Radvance\\": "../radvance/src/",
"BlogApp\\": "src/"
}
}
}