-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
55 lines (55 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "eclogue/courser",
"description": "light and faster php rest api lib",
"version": "0.0.2",
"license": "MIT",
"authors": [
{
"name": "bugbear",
"email": "mulberry10th@gmail.com",
"homepage": "https://github.com/eclogue/courser"
}
],
"config": {
"secure-http": false
},
"autoload": {
"psr-4": {
"Courser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": {
"1": {
"type": "vcs",
"url": "https://github.com/eclogue/bulrush.git"
}
},
"require": {
"php": ">=7.0.0",
"psr/http-message": "^1.0",
"eclogue/bulrush": "dev-master",
"psr/http-server-handler": "^1.0@dev",
"psr/http-server-middleware": "^1.0",
"php-di/php-di": "^6.0.2",
"slim/http": "^0.5",
"zendframework/zend-diactoros": "^2.0@dev"
},
"minimum-stability": "dev",
"prefer-stable": false,
"scripts": {
"phpcs": "php vendor/bin/phpcs",
"test": "php vendor/bin/phpunit --coverage-text",
"cgi-server": "php -t example -S 127.0.0.1:8179",
"swoole-server": "php example/swoole.php"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.0"
}
}