-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (40 loc) · 1.19 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
{
"name": "railsphp/framework",
"description": "Yet another Rails-like framework for PHP",
"keywords": [
"rails",
"php",
"railsphp",
"framework"
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"zendframework/zend-log": "2.3.*",
"zendframework/zend-validator": "2.3.*",
"zendframework/zend-mail": "2.3.*",
"zendframework/zend-console": "2.3.*",
"zendframework/zend-db": "2.3.*",
"zendframework/zend-paginator": "2.3.*",
"symfony/yaml": "2.5.*",
"symfony/console": "2.5.*",
"pagon/jade": "1.0.*",
"nesbot/carbon": "1.8.*",
"d11wtq/boris": "1.0.*",
"nikic/php-parser": "0.9.4",
"willdurand/negotiation": "1.3.*"
},
"suggest": {
"toopay/assetic-minifier": "Required to minify CSS (in dev environment).",
"leafo/scssphp": "Required to parse SCSS (in dev environment).",
"coffeescript/coffeescript": "Required to parse CoffeeScript (in dev environment)."
},
"autoload": {
"psr-0": {
"Rails\\": "src/"
},
"classmap": [
"src/Rails.php"
]
}
}