-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 1.19 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",
"type": "library",
"description": "high quality php shopping Cart.",
"keywords": ["shopping 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": "stable",
"require": {
"php": ">=5.3.2",
"doctrine/common": "~2",
"symfony/validator": "~2",
"symfony/event-dispatcher": "~2",
"symfony/http-kernel": "~2",
"symfony/form": "~2",
"jms/serializer": "~0",
"pugx/godfather": "~0",
"yohang/finite": "~1"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"suggest": {
"doctrine/orm": "Required when using ORM as db-driver",
"doctrine/odm": "Required when using ODM as db-driver"
},
"autoload": {
"psr-0": { "Leaphly\\Cart\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}