forked from netconstructor/prontotype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.06 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
{
"name": "allmarkedup/prontotype",
"description": "A server-side framework to help you quickly build interactive, data-driven HTML prototypes",
"keywords": ["prototyping","prototype server","framework"],
"homepage": "http://prontotype.allmarkedup.com",
"license": "BSD-3",
"authors": [
{
"name": "Mark Perkins",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"silex/silex": "1.0.*",
"symfony/twig-bridge": "2.1.*",
"symfony/twig-bundle": "2.1.*",
"allmarkedup/silextend": "*",
"kriswallsmith/assetic" : "1.*",
"mheap/Silex-Assetic": "*",
"leafo/lessphp" : "0.*",
"leafo/scssphp" : "0.*",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"fzaninotto/faker" : "1.1.*"
},
"minimum-stability": "dev",
"config": {
"vendor-dir": "app/vendor",
"bin-dir": "app/bin"
},
"autoload": {
"psr-0": {
"Prontotype": "app/src/"
}
}
}