-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
44 lines (44 loc) · 1.07 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
{
"name": "roave/dont",
"description": "A small set of traits that can be used to prevent misuse of your objects",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Roave/Dont",
"keywords": [
"defensive programming",
"strictness"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.7",
"infection/infection": "^0.26.19"
},
"autoload": {
"psr-4": {
"Dont\\": "src/Dont"
}
},
"autoload-dev": {
"psr-4": {
"DontTest\\": "tests/DontTest",
"DontTestAsset\\": "tests/DontTestAsset"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": false
},
"platform": {
"php": "8.0.99"
}
}
}