-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.7 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "internations/testing-component",
"description": "A collection of test helpers for Symfony 3 projects",
"license": "MIT",
"authors": [
{
"name": "Lars Strojny",
"email": "[email protected]"
},
{
"name": "Michael Weinrich",
"email": "[email protected]"
},
{
"name": "Marc Jakubowski",
"email": "[email protected]"
},
{
"name": "Max Beutel",
"email": "[email protected]"
},
{
"name": "Hans Bernhard Streit",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"InterNations\\Component\\Testing": "src/"
}
},
"require-dev": {
"symfony/dom-crawler": "^4.0 || ^5.0",
"symfony/css-selector": "~3",
"internations/kodierungsregelwerksammlung": "~0.35",
"phpunit/phpunit": "~7 || ~8 || ~9",
"doctrine/annotations": "^1.2",
"symfony/validator": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0",
"symfony/config": "^4.0",
"symfony/http-kernel": "^4.0",
"symfony/framework-bundle": "^4.0 || ^5.0"
},
"suggest": {
"symfony/dom-crawler": "Necessary to use DomCrawlerAssertionTrait",
"symfony/css-selector": "Dependency for symfony/dom-crawler"
},
"require": {
"php": ">=7.1.3"
},
"scripts": {
"tests": "phpunit",
"coding-style": "phpcs --standard=vendor/internations/kodierungsregelwerksammlung/ruleset.xml --exclude=InterNations.Syntax.MethodTypeHints ./src/"
}
}