This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
66 lines (61 loc) · 1.82 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
{
"name": "lendable/symfony-messenger-polyfill",
"type": "symfony-bundle",
"description": "Use Symfony Messenger v4.2 with older Symfony versions.",
"keywords": ["lendable", "symfony3", "symfony4", "bundle", "messenger", "symfony-messenger", "polyfill"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Lendable Ltd",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lendable\\Polyfill\\Symfony\\MessengerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Lendable\\Polyfill\\Symfony\\MessengerBundle\\": "tests/",
"Tests\\Lendable\\Polyfill\\Symfony\\MessengerBundle\\Features\\Fixtures\\Project\\": "features/Fixtures/Project/src",
"Tests\\Lendable\\Polyfill\\Symfony\\MessengerBundle\\Features\\": "features/"
}
},
"require": {
"php": ">=7.1",
"symfony/config": "^3.4 || ^4.0",
"symfony/console": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/framework-bundle": "^3.4 || >=4.0 < 4.1",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/messenger": "~4.2.0"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/symfony2-extension": "^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"phpunit/phpunit": "^7.4",
"symfony/property-access": "^3.4 || ^4.0",
"symfony/property-info": "^3.4 || ^4.0",
"symfony/serializer": "^3.4 || ^4.0",
"symfony/stopwatch": "^3.4 || ^4.0"
},
"scripts": {
"tests:behat": [
"behat --strict --colors -vvv"
],
"tests:e2e": [
"behat --strict --colors --profile=e2e -vvv"
],
"tests:unit": [
"phpunit --colors --coverage-clover build/logs/clover.xml"
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"prefer-stable": true
}