-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 964 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
{
"name": "colopl/colopl_bc",
"description": "PHP Backwards compatibility library.",
"type": "library",
"autoload": {
"psr-4": {
"Colopl\\ColoplBc\\": "src/"
},
"files": ["library.php"]
},
"autoload-dev": {
"psr-4": {
"Colopl\\ColoplBc\\Tests\\": "tests/"
}
},
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.18",
"phpstan/phpstan": "^1.10.65",
"phpstan/phpstan-phpunit": "^1.3.16",
"php-cs-fixer/shim": "^3.52.1",
"rector/rector": "^1.0.3"
},
"license": "PHP-3.01",
"authors": [
{
"name": "Go Kudo",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"rector/extension-installer": true
}
}
}