-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
42 lines (42 loc) · 944 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
{
"name": "zalas/toolbox",
"description": "Helps to discover and install tools",
"type": "project",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"symfony/console": "^5.4.31 || ^6.3",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"zalas/phpunit-globals": "^3.2",
"infection/infection": "^0.29"
},
"autoload": {
"psr-4": {
"Zalas\\Toolbox\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zalas\\Toolbox\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Jakub Zalas",
"email": "jakub@zalas.pl"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}