-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.29 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "jasny/dummy-middleware",
"description": "Dummy client and server middleware for PSR-7 requests",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Arnold Daniels",
"email": "arnold@jasny.net",
"homepage": "http://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/jasny/dummy-middleware/issues",
"source": "https://github.com/jasny/dummy-middleware"
},
"require": {
"php": ">=7.2.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"jasny/php-code-quality": "^2.3",
"php-http/client-common": "^2.0",
"php-http/mock-client": "^1.3"
},
"autoload": {
"psr-4": {
"Jasny\\Dummy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasny\\Dummy\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"phpunit",
"phpcs -p src"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}