forked from mevdschee/php-crud-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 730 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 730 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
37
{
"name": "mevdschee/php-crud-api",
"type": "library",
"description": "Single file PHP script that adds a REST API to a SQL database.",
"keywords": [
"api-server",
"restful",
"mysql",
"geospatial",
"sql-server",
"postgresql",
"php-api",
"postgis",
"crud",
"rest-api",
"openapi",
"swagger"
],
"homepage": "https://github.com/mevdschee/php-crud-api",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "maurits@vdschee.nl",
"homepage": "https://github.com/mevdschee"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.0"
},
"autoload": {
"files": ["api.php"]
}
}