-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
49 lines (49 loc) · 984 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sof3/await-generator",
"description": "Use async/await in PHP using generators",
"type": "library",
"readme": "README.md",
"license": "apache-2.0",
"authors": [
{
"name": "SOFe",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"SOFe\\AwaitGenerator\\": "await-generator/src/"
}
},
"autoload-dev": {
"psr-0": {
"virion_tests\\SOFe\\AwaitGenerator\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.84",
"infection/infection": "^0.18.2 || ^0.20.2 || ^0.26.0",
"composer/package-versions-deprecated": "1.11.99.1"
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyze": "vendor/bin/phpstan analyze",
"infection": "vendor/bin/infection -s"
},
"extra": {
"virion":{
"spec": "3.0",
"namespace-root": "SOFe\\AwaitGenerator"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}