-
Notifications
You must be signed in to change notification settings - Fork 1k
/
composer.json
57 lines (57 loc) · 1.17 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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",
"php",
"sql-server",
"postgresql",
"php-api",
"postgis",
"crud",
"rest-api",
"openapi",
"swagger",
"automatic-api",
"database",
"multi-database",
"sql-database",
"ubuntu-linux"
],
"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": ">=7.0.0",
"ext-zlib": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-mbstring": "*",
"psr/http-message": "*",
"psr/http-factory": "*",
"psr/http-server-handler": "*",
"psr/http-server-middleware": "*",
"nyholm/psr7": "*",
"nyholm/psr7-server": "*"
},
"suggest": {
"ext-memcache": "*",
"ext-memcached": "*",
"ext-redis": "*"
},
"autoload": {
"psr-4": {
"Tqdev\\PhpCrudApi\\": "src/Tqdev/PhpCrudApi"
}
}
}