forked from leaphly/CartBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.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
{
"name": "leaphly/cart-bundle",
"type": "symfony-bundle",
"description": "Cart Bundle",
"keywords": ["Cart management"],
"homepage": "http://leaphly.org",
"license": "MIT",
"authors": [
{
"name": "Giulio De Donato",
"email": "[email protected]"
},
{
"name": "Leaphly Community",
"homepage": "https://github.com/leaphly/CartBundle/contributors"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.1",
"jms/serializer-bundle": "~0",
"leaphly/cart":"dev-master"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "dev-master",
"phpunit/phpunit": "3.7.*",
"liip/functional-test-bundle":"dev-master"
},
"suggest": {
"doctrine/doctrine-fixtures-bundle": "Required when using the fixture loading functionality",
"doctrine/mongodb-odm-bundle": "Required when using ODM as db-driver",
"doctrine/doctrine-bundle": "Required when using ORM as db-driver",
"friendsofsymfony/rest-bundle": "Required if you want to use the Rest Controller"
},
"autoload": {
"psr-0": { "Leaphly\\CartBundle": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
},
"target-dir": "Leaphly/CartBundle"
}