-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1010 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
34
35
36
37
38
39
{
"name": "radphp/radphp-demo",
"description": "RadPHP demo application",
"keywords": ["RadPHP", "RESTful", "demo"],
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Mohammad Abdoli Rad",
"email": "[email protected]",
"role": "Project Founder"
},
{
"name": "Omid Mottaghi Rad",
"email": "[email protected]",
"role": "Project Founder"
}
],
"require": {
"php": ">=5.5.21",
"radphp/radphp": "dev-master",
"radphp/twig-bundle": "dev-master",
"radphp/pages-bundle": "dev-master",
"radphp/admin-bundle": "dev-master",
"radphp/migrations-bundle": "dev-master"
},
"autoload": {
"psr-4": {
"": "src/"
},
"files": [
"src/App/Resource/config/paths.php"
]
},
"require-dev": {
"phpunit/phpunit": "4.5.0"
}
}