-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.27 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
{
"name": "sanmai/pipeline",
"description": "General-purpose collections pipeline",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Alexey Kopytko",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.17",
"infection/infection": ">=0.10.5",
"league/pipeline": "^0.3 || ^1.0",
"phan/phan": ">=1.1",
"php-coveralls/php-coveralls": "^2.4.1",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": ">=9.4",
"vimeo/psalm": ">=2"
},
"autoload": {
"psr-4": {
"Pipeline\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Pipeline\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "v6.x-dev"
}
}
}