forked from Sylius/ShopApiPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (49 loc) · 1.66 KB
/
composer.json
File metadata and controls
50 lines (49 loc) · 1.66 KB
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
46
47
48
49
50
{
"name": "sylius/shop-api-plugin",
"type": "sylius-plugin",
"description": "Shop API for Sylius E-Commerce.",
"license": "MIT",
"require": {
"php": "^7.1",
"sylius/sylius": "^1.1",
"league/tactician-bundle": "^1.1",
"league/tactician-doctrine": "^1.1"
},
"require-dev": {
"lakion/api-test-case": "^3.1",
"lexik/jwt-authentication-bundle": "^2.5",
"matthiasnoback/symfony-config-test": "^3.1",
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"phpspec/phpspec": "^5.0",
"phpstan/phpstan-shim": "^0.10.3",
"phpstan/phpstan-webmozart-assert": "^0.10.0",
"phpunit/phpunit": "^6.5",
"sylius-labs/coding-standard": "^2.0",
"symfony/debug-bundle": "^3.4|^4.1",
"symfony/web-profiler-bundle": "^3.4|^4.1",
"symfony/web-server-bundle": "^3.4|^4.1"
},
"autoload": {
"psr-4": {
"Sylius\\ShopApiPlugin\\": "src/"
}
},
"scripts": {
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests/Controller tests/DataFixtures tests/Request --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar spec src tests/Controller tests/DataFixtures tests/Request",
"vendor/bin/phpstan analyse -l 2 -c phpstan.neon --no-progress src"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\ShopApiPlugin\\": "tests/"
},
"classmap": ["tests/Application/app/AppKernel.php"]
},
"suggest": {
"nelmio/cors-bundle": "allows you to send Cross-Origin Ajax API Request"
}
}