forked from europaphp/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 942 Bytes
/
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
{
"name": "europaphp/europaphp",
"description": "A feather-weight, extremely-fast, diverse, scalable and productive PHP 5.4 View Controller framework.",
"keywords": ["mvc", "view", "controller", "fast", "scalable", "simple", "module", "modular"],
"license": "MIT",
"authors": [
{
"name": "Trey Shugart",
"email": "[email protected]",
"homepage": "http://iamtres.com",
"role": "Lead Developer"
}
],
"autoload": {
"psr-0": {
"Europa": "src"
}
},
"require": {
"php": "5.4.*"
},
"require-dev": {
"europaphp/module-main": "dev-master",
"europaphp/module-tests": "dev-master",
"treshugart/testes": "1.0.x-dev"
},
"replace": {
"treshugart/europaphp": "*"
},
"suggest": {
"ext-yaml": "Recommended for using YAML-based configuration files."
}
}