-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "onion/event-loop",
"license": "MIT",
"autoload": {
"psr-4": {
"Onion\\Framework\\": "src/"
},
"files": [
"src/functions.php",
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"onion/interfaces": "dev-master",
"psr/event-dispatcher": "^1.0",
"onion/promise": "@dev"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"infection/infection": "^0.27.0",
"vimeo/psalm": "^5.13",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"symplely/uv-ffi": "FFI bindings for libuv allowing for compilation-free cross-platform usage",
"ext-uv": "For the libuv loop implementation (see https://github.com/symplely/ext-uv)",
"ext-ev": "For the libev loop implementation",
"ext-event": "For the libevent loop implementation"
},
"scripts": {
"lint": "phpcs --standard=psr12 src/ tests/",
"fix": "phpcbf --standard=psr12 src/ tests/",
"infect": "infection -j4 --min-msi=85 --min-covered-msi=95 --no-progress"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}