-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
109 lines (108 loc) · 3.38 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
{
"name": "lchrusciel/beery",
"description": "Backend application for sharing beers information and rating them.",
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.2",
"graphaware/neo4j-php-ogm": "^1.0@rc",
"lexik/jwt-authentication-bundle": "^2.4",
"prooph/event-sourcing": "^5.3",
"prooph/event-store-bus-bridge": "^3.1",
"prooph/event-store-symfony-bundle": "dev-feature/symfony4",
"prooph/service-bus-symfony-bundle": "^0.6",
"ramsey/uuid-doctrine": "^1.4",
"symfony/console": "^4.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^4.0",
"symfony/monolog-bundle": "^3",
"symfony/orm-pack": "^1.0",
"symfony/security-bundle": "^4.0",
"symfony/serializer": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"coduo/php-matcher": "^2.3",
"doctrine/data-fixtures": "^1.2",
"friends-of-behat/context-service-extension": "^1.0",
"friends-of-behat/cross-container-extension": "^1.0",
"friends-of-behat/suite-settings-extension": "^1.0",
"friends-of-behat/symfony-extension": "^1.0",
"friends-of-behat/variadic-extension": "^1.0",
"leanphp/phpspec-code-coverage": "^4.0",
"object-calisthenics/phpcs-calisthenics-rules": "^3.1",
"phploc/phploc": "^4.0",
"phpspec/nyan-formatters": "^2.0",
"phpspec/phpspec": "^4.2",
"phpstan/phpstan": "^0.9",
"phpstan/phpstan-doctrine": "^0.9",
"phpstan/phpstan-strict-rules": "^0.9.0",
"sylius-labs/coding-standard": "dev-master",
"symfony/browser-kit": "^4",
"symfony/dotenv": "^4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kejwmen/event-store-symfony-bundle"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"check": [
"composer validate --strict",
"@analyse",
"@test"
],
"test": [
"vendor/bin/phpspec run -fpretty --ansi",
"vendor/bin/behat --strict --colors"
],
"spec-coverage": [
"vendor/bin/phpspec run -c phpspec-with-test-coverage.yml.dist --ansi"
],
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar bin public src tests --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar bin public src tests",
"vendor/bin/phpstan analyse --ansi --no-progress -c phpstan.neon -l 7 bin public src tests"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01BY4552Y9B5KSV5J8RM8100QF",
"allow-contrib": false
}
}
}