-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 1.13 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
{
"name": "internations/type-jail",
"description": "Enforce type constraints",
"require": {
"php": ">=7.4",
"friendsofphp/proxy-manager-lts": "~1"
},
"require-dev": {
"phpunit/phpunit": "~9",
"internations/testing-component": "~1",
"internations/kodierungsregelwerksammlung": "~0.35",
"roave/backward-compatibility-check": "^5 || ^6"
},
"license": "MIT",
"authors": [
{
"name": "Lars Strojny",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"InterNations\\Component\\TypeJail\\": "src/InterNations"
}
},
"autoload-dev": {
"psr-4": {
"InterNations\\Component\\TypeJail\\Tests\\": "tests/InterNations"
}
},
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=vendor/internations/kodierungsregelwerksammlung/ruleset.xml --exclude=InterNations.Naming.NamespaceName,Generic.PHP.RequireStrictTypes,InterNations.Naming.Final ./src/",
"backward-compatibility-check": "roave-backward-compatibility-check"
}
}