-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.39 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
{
"name": "internations/type-jail-bundle",
"description": "Constraint objects to super types for templating",
"license": "MIT",
"authors": [
{
"name": "Lars Strojny",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"internations/type-jail": "^2 || ^3",
"symfony/http-kernel": ">=4.4",
"symfony/dependency-injection": ">=4.4",
"symfony/twig-bundle": ">=4.4"
},
"require-dev": {
"phpunit/phpunit": "~9",
"internations/kodierungsregelwerksammlung": "~0.35",
"roave/backward-compatibility-check": "^5 || ^6",
"symfony/framework-bundle": ">=4.4",
"symfony/templating": ">=4.4",
"symfony/yaml": ">=4.4",
"symfony/proxy-manager-bridge": ">=4.4"
},
"autoload": {
"psr-4": {
"InterNations\\Bundle\\TypeJailBundle\\": "src/InterNations"
}
},
"autoload-dev": {
"psr-4": {
"InterNations\\Bundle\\TypeJailBundle\\": "tests/InterNations"
}
},
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=vendor/internations/kodierungsregelwerksammlung/ruleset.xml --exclude=InterNations.Naming.NamespaceName,InterNations.Naming.Final --ignore=*/Fixtures/* ./src/",
"backward-compatibility-check": "roave-backward-compatibility-check"
}
}