Browse Source

Adding composer file

Karl Hughes 8 years ago
parent
commit
24962db192
2 changed files with 40 additions and 0 deletions
  1. 4
    0
      .gitignore
  2. 36
    0
      composer.json

+ 4
- 0
.gitignore View File

3
 .settings/
3
 .settings/
4
 phpunit.phar
4
 phpunit.phar
5
 tests/config.php
5
 tests/config.php
6
+.idea/
7
+vendor
8
+composer.lock
9
+.DS_Store

+ 36
- 0
composer.json View File

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": "maurits@vdschee.nl",
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
+}

Loading…
Cancel
Save