-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
112 lines (112 loc) · 3.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "speicher210/functional-test-bundle",
"description": "Symfony bundle for functional testing",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Dragos Protung",
"email": "dragos@protung.de"
},
{
"name": "Cezary Stępkowski",
"email": "cezary.stepkowski@protonmail.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-json": "*",
"azjezz/psl": "^2.9.1 || ^3.0.0",
"coduo/php-matcher": "^6.0.14",
"dama/doctrine-test-bundle": "^7.3.0 || ^8.0.1",
"doctrine/data-fixtures": "^1.7.0 || ^2.0.0",
"doctrine/dbal": "^3.8.4 || ^4.0.2",
"doctrine/doctrine-fixtures-bundle": "^3.7.1 || ^4.0.0",
"doctrine/orm": "^2.19.5 || ^3.2.0",
"phpunit/phpunit": "^10.5",
"symfony/browser-kit": "^6.4 || ^7.1",
"symfony/css-selector": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/polyfill-php83": "^1.31"
},
"require-dev": {
"ext-imagick": "*",
"ext-intl": "*",
"doctrine/coding-standard": "^12.0.0",
"ergebnis/composer-normalize": "^2.45.0",
"mikey179/vfsstream": "^1.6.12",
"moneyphp/money": "^4.6.0",
"nesbot/carbon": "^3.8.0",
"php-standard-library/phpstan-extension": "^2.0",
"phpstan/phpstan": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.1",
"phpstan/phpstan-strict-rules": "^2.0.0",
"phpstan/phpstan-symfony": "^2.0.0",
"spatie/pdf-to-image": "^3.1.0",
"spatie/pdf-to-text": "^1.54.0",
"squizlabs/php_codesniffer": "^3.11.1",
"symfony/clock": "^6.4 || ^7.1",
"symfony/console": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1",
"symfony/validator": "^6.4 || ^7.1",
"twig/twig": "^3.14.0"
},
"conflict": {
"spatie/pdf-to-image": "<3.0.0",
"twig/twig": "<3.0.0"
},
"suggest": {
"ext-imagick": "To assert PDF files, images or create fixture images",
"mikey179/vfsstream": "To mock uploading large files",
"spatie/pdf-to-image": "To test PDF files",
"spatie/pdf-to-text": "To test PDF files",
"symfony/console": "To use command line tool to generate tests stubs"
},
"autoload": {
"psr-4": {
"Speicher210\\FunctionalTestBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Speicher210\\FunctionalTestBundle\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"ocramius/package-versions": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"analyse": [
"@analyse-phpstan"
],
"analyse-phpstan": [
"phpstan analyse --memory-limit=256M"
],
"analyse-phpstan-update": [
"phpstan analyse --memory-limit=256M --generate-baseline"
],
"check": [
"composer validate",
"composer normalize --dry-run",
"@cs-check",
"@analyse",
"@test"
],
"cs-check": "phpcs -p",
"cs-fix": "phpcbf -p",
"test": "phpunit"
}
}