forked from Sylius/ShopApiPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 1.05 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
{
"name": "sylius/shop-api-plugin",
"type": "sylius-plugin",
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^7.1",
"sylius/sylius": "^1.0",
"league/tactician-bundle": "^0.4",
"league/tactician-doctrine": "^1.1"
},
"require-dev": {
"lakion/api-test-case": "^1.1",
"phpspec/phpspec": "^3.2",
"lexik/jwt-authentication-bundle": "^2.4",
"matthiasnoback/symfony-config-test": "^2.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"phpunit/phpunit": "^5.6",
"doctrine/common": "<2.8",
"symplify/easy-coding-standard": "^2.4",
"sylius-labs/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"Sylius\\ShopApiPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\ShopApiPlugin\\": "tests/"
}
},
"suggest": {
"nelmio/cors-bundle": "allows you to send Cross-Origin Ajax API Request"
}
}