forked from Sylius/SyliusCartBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (44 loc) · 1.29 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": "sylius/cart-bundle",
"type": "symfony-bundle",
"description": "Cart feature for your next Symfony2 application.",
"keywords": ["shop", "ecommerce", "cart", "carts", "sylius"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"email": "[email protected]",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/SyliusCartBundle/contributors"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1",
"sylius/resource-bundle": "*"
},
"require-dev": {
"phpspec/phpspec2": "dev-develop",
"phpspec/php-diff": "dev-master",
"symfony/form": "~2.1",
"symfony/validator": "~2.1",
"twig/twig": "~1.11"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Sylius\\Bundle\\CartBundle": "" }
},
"target-dir": "Sylius/Bundle/CartBundle",
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}