-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 864 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 864 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
30
31
32
33
34
35
36
{
"name": "radphp/app",
"description": "RadPHP application skeleton",
"keywords": ["RadPHP", "RESTful", "app"],
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Mohammad Abdoli Rad",
"email": "m.abdolirad@gmail.com",
"role": "Project Founder"
},
{
"name": "Omid Mottaghi Rad",
"email": "omidmr@gmail.com",
"role": "Project Founder"
}
],
"require": {
"php": ">=5.5.21",
"radphp/radphp": "0.1.x-dev",
"radphp/asset-bundle": "0.1.x-dev"
},
"autoload": {
"psr-4": {
"": "src/"
},
"files": [
"src/App/Resource/config/paths.php"
]
},
"require-dev": {
"phpunit/phpunit": "4.5.0"
}
}