forked from liip/LiipFunctionalTestBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.03 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
{
"name": "facile-it/symfony-functional-testcase",
"description": "A small functional base test case for Symfony",
"support": {
"issues": "https://github.com/facile-it/symfony-functional-testcase/issues"
},
"keywords": [
"symfony",
"phpunit",
"functional",
"testcase",
"test"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alessandro Lai",
"email": "alessandro.lai@facile.it"
}
],
"require": {
"php": "^7.4|^8.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.2",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5.2",
"symfony/browser-kit": "^4.4|^5.0|^6.0|^7.0",
"symfony/console": "^4.4|^5.0|^6.0|^7.0",
"symfony/monolog-bridge": ">=3",
"symfony/monolog-bundle": "^3.1.2",
"symfony/phpunit-bridge": "^5.1.8 || ^7.0.0",
"symfony/security-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/security-core": "^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.4|^5.0|^6.0|^7.0"
},
"suggest": {
"facile-it/paraunit": "A PHPUnit wrapper to execute tests in parallel"
},
"autoload": {
"psr-4": {
"Facile\\SymfonyFunctionalTestCase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\SymfonyFunctionalTestCase\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff"
}
}