Skip to content

Commit 24962db

Browse files
committed
Adding composer file
1 parent 2e320f3 commit 24962db

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
.settings/
44
phpunit.phar
55
tests/config.php
6+
.idea/
7+
vendor
8+
composer.lock
9+
.DS_Store

composer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "mevdschee/php-crud-api",
3+
"type": "library",
4+
"description": "Single file PHP script that adds a REST API to a SQL database.",
5+
"keywords": [
6+
"api-server",
7+
"restful",
8+
"mysql",
9+
"geospatial",
10+
"sql-server",
11+
"postgresql",
12+
"php-api",
13+
"postgis",
14+
"crud",
15+
"rest-api",
16+
"openapi",
17+
"swagger"
18+
],
19+
"homepage": "https://github.com/mevdschee/php-crud-api",
20+
"license": "MIT",
21+
"authors": [
22+
{
23+
"name": "Maurits van der Schee",
24+
"email": "[email protected]",
25+
"homepage": "https://github.com/mevdschee"
26+
}
27+
],
28+
"require": {
29+
"php": ">=5.6.0"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"PHP_CRUD_API\\": "api.php"
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)