-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathcomposer.json
32 lines (32 loc) · 862 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
{
"name": "mevdschee/php-crud-ui",
"type": "library",
"description": "Single file PHP script that adds a UI to a PHP-CRUD-API.",
"keywords": [],
"homepage": "https://github.com/mevdschee/php-crud-ui",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "maurits@vdschee.nl",
"homepage": "https://github.com/mevdschee"
}
],
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-curl": "*",
"psr/http-message": "*",
"psr/http-factory": "*",
"psr/http-server-handler": "*",
"psr/http-server-middleware": "*",
"nyholm/psr7": "*",
"nyholm/psr7-server": "*",
"mevdschee/php-crud-api": "*"
},
"suggest": {
},
"autoload": {
"psr-4": { "Tqdev\\PhpCrudUi\\": "src/Tqdev/PhpCrudUi" }
}
}