-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
78 lines (78 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "macpaw/behat-doctrine-fixtures",
"type": "symfony-bundle",
"description": "Bundle for creating Doctrine fixtures",
"keywords": [
"MacPaw",
"symfony",
"behat",
"BDD",
"Context",
"Doctrine",
"Fixture"
],
"authors": [
{
"name": "IiiigorGG",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
},
{
"name": "Yozhef Hisem",
"email": "[email protected]",
"homepage": "https://macpaw.com/",
"role": "Software Engineer"
}
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"behat/behat": "^3.0",
"doctrine/orm": "^2.0 || ^3.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"theofidry/alice-data-fixtures": "^1.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"doctrine/dbal": "^2.0 || ^3.0 || ^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/console": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/property-access": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symplify/config-transformer": "^12.3"
},
"autoload": {
"psr-4": {
"BehatDoctrineFixtures\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BehatDoctrineFixtures\\Tests\\": "tests"
}
},
"scripts": {
"composer-validate": "composer validate",
"phpstan": "./vendor/bin/phpstan analyse -l max",
"code-style": "./vendor/bin/phpcs",
"code-style-fix": "./vendor/bin/phpcbf",
"phpunit": "./vendor/bin/phpunit",
"dev-checks": [
"composer validate",
"@phpstan",
"@phpunit",
"@code-style"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}