-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "loophp/psr17",
"description": "Provides a PSR17 synthetic implementation.",
"license": "MIT",
"type": "library",
"keywords": [
"psr-17",
"factory"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"homepage": "https://github.com/loophp/psr17",
"support": {
"issues": "https://github.com/loophp/psr17/issues",
"source": "https://github.com/loophp/psr17",
"docs": "https://github.com/loophp/psr17"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.1",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^2.0",
"psr/http-message-implementation": "^1.0"
},
"require-dev": {
"ext-pcov": "*",
"drupol/php-conventions": "^6",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.2.0",
"nyholm/psr7": "^1.8",
"phpspec/phpspec": "^7.4"
},
"suggest": {
"nyholm/psr7": "A super lightweight PSR-7 implementation"
},
"autoload": {
"psr-4": {
"loophp\\psr17\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}