forked from jacwright/RestServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 710 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 710 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
{
"name": "jacwright/restserver",
"version": "1.0.1",
"type": "library",
"description": "php rest server for very light-weight REST APIs",
"keywords": ["php", "rest", "rest-server", "light-weight", "http", "json", "mit"],
"homepage": "https://github.com/jacwright/RestServer",
"license": "MIT",
"authors": [
{
"name": "Jacob Wright",
"email": "jacwright@gmail.com",
"homepage": "http://jacwright.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3"
},
"autoload": {
"psr-0": {
"Jacwright\\RestServer": "source/"
}
}
}