-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 832 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 832 Bytes
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
{
"name": "backend/core",
"type": "library",
"description": "Core framework tier that can be used as the beginning of a MVC / SOA system.",
"keywords": ["backend", "framework", "mvc", "soa", "core"],
"homepage": "http://backend-php.net",
"license": "MIT",
"authors": [
{
"name": "Jurgens du Toit",
"email": "jrgns@backend-php.net",
"homepage": "http://jrgns.net",
"role": "Designer / Developer"
}
],
"require": {
"php": ">=5.3.0",
"backend/interfaces": "0.2.3",
"symfony/dependency-injection": ">=2.0",
"symfony/event-dispatcher": ">=2.0",
"symfony/yaml": ">=2.0"
},
"autoload": {
"psr-0": {
"Backend\\Core": ""
}
},
"target-dir": "Backend/Core"
}