forked from marcj/php-rest-service
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 829 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
{
"name": "cdgco/php-rest-service",
"description": "PHP REST Service is a simple and fast PHP class for server side RESTful APIs.",
"keywords": ["REST", "RESTful", "php", "API", "REST-API"],
"license": "MIT",
"authors": [{
"name": "Carter Roeser",
"email": "[email protected]",
"homepage": "https://cdgtech.one"
}],
"require": {
"php": ">=7.4.0"
},
"autoload": {
"psr-0": {
"RestService": ""
}
},
"require-dev": {
"phpunit/phpunit": "9.5.27",
"onspli/phpdoc-markdown": "^0.3.3"
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"phpdoc": [
"php phpDocumentor.phar --template=vendor/onspli/phpdoc-markdown/templates/public-onefile/"
]
}
}