-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "infection/include-interceptor",
"type": "library",
"description": "Stream Wrapper: Include Interceptor. Allows to replace included (autoloaded) file with another one.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maks Rafalko",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"infection/infection": "^0.19.0",
"phan/phan": "^2.4 || ^3",
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "^0.12.8",
"phpunit/phpunit": "^8.5",
"vimeo/psalm": "^3.8"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Infection\\StreamWrapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\StreamWrapper\\": "tests/"
}
}
}