forked from lchrusciel/ApiTestCase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (83 loc) · 2.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dotdev/api-test-case",
"description": "Perfect PHPUnit TestCase for JSON/XML API TDD with Symfony.",
"keywords": ["TDD", "Symfony", "PHPUnit", "Doctrine", "API", "JSON", "XML"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Łukasz Chruściel",
"email": "[email protected]"
},
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com",
"email": "[email protected]"
},
{
"name": "Michał Marcinkowski",
"email": "[email protected]"
},
{
"name": "Arkadiusz Krakowiak",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"coduo/php-matcher": "^6.0",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "^1.6|^2.0",
"doctrine/orm": "^2.5",
"nelmio/alice": "^3.6",
"phpspec/php-diff": "^1.1",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/finder": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"theofidry/alice-data-fixtures": "^1.0"
},
"require-dev": {
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12",
"symfony/serializer": "^4.4|^5.0",
"sylius-labs/coding-standard": "^3.1.2",
"phpstan/phpstan": "^0.12",
"openlss/lib-array2xml": "^1.0"
},
"scripts": {
"fix": [
"vendor/bin/ecs check --ansi --no-progress-bar src test/src --fix"
],
"analyse": [
"vendor/bin/ecs check --ansi --no-progress-bar src test/src",
"vendor/bin/phpstan.phar analyse --ansi --no-progress -l 5 src"
]
},
"conflict": {
"symfony/dependency-injection": "4.1.0"
},
"suggest": {
"polishsymfonycommunity/symfony-mocker-container": "For mocking container services and external APIs",
"openlss/lib-array2xml": "Optional: required for Xml matching"
},
"autoload": {
"psr-4": {
"ApiTestCase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiTestCase\\Test\\": "test/src/",
"ApiTestCase\\Test\\App\\": "test/app/"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}