-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 857 Bytes
/
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
{
"name": "vaszev/barion-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for Barion",
"keywords": ["Barion", "Symfony"],
"homepage": "https://github.com/vaszev/barion.git",
"license": "MIT",
"authors": [
{
"name": "Roland Bodnar",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"symfony/framework-bundle": "^4.0",
"twig/extensions": "^1.5",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0"
},
"config": {
"platform": {
"php": "7.1.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Vaszev\\BarionBundle\\": ""
}
},
"conflict": {
"symfony/symfony": "<4.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}