-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 742 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 742 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
{
"name": "sandro.ruefenacht/phre-api",
"type": "project",
"description": "The PHP REST-API framework allows you to get a REST backend up and running in just minutes!",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sandro Rüfenacht",
"email": "sandro.ruefenacht0@gmail.com"
}
],
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"vlucas/phpdotenv": "^5.3",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": ">=8.5"
},
"autoload": {
"psr-4": {
"PHREAPI\\": "src/",
"PHREAPITests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit ."
}
}