-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.47 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
{
"name": "elythyr/prooph-fixtures-bundle",
"description": "Symfony bundle for elythyr/prooph-fixtures",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Camille Dejoye",
"email": "camilledejoye@gmail.com"
}
],
"require": {
"php": "^7.1.3",
"elythyr/prooph-fixtures": "^1.1",
"prooph/event-store-symfony-bundle": "^0.5.0",
"symfony/console": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/expression-language": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/lock": "^3.4 || ^4.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
"phpunit/php-invoker": "^2.0",
"phpunit/phpunit": "^7.5",
"prooph/php-cs-fixer-config": "^0.3.0",
"symfony/var-dumper": "^3.4 || ^4.0"
},
"autoload": {
"psr-4": {
"Prooph\\Bundle\\Fixtures\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Prooph\\Bundle\\Fixtures\\Tests\\": "tests/",
"DummyBundle\\": "tests/Fixtures/DummyBundle/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "vendor/bin/php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix -v --diff",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}