-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
78 lines (77 loc) · 2.24 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
{
"name": "lchrusciel/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": "^8.0",
"ext-json": "*",
"coduo/php-matcher": "^6.0",
"openlss/lib-array2xml": "^1.0",
"doctrine/data-fixtures": "^1.2",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5 || ^3.0",
"nelmio/alice": "^3.6",
"phpspec/php-diff": "^1.1",
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"theofidry/alice-data-fixtures": "^1.0"
},
"require-dev": {
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"symfony/serializer": "^5.4 || ^6.0",
"phpstan/phpstan": "^1.8"
},
"scripts": {
"analyse": [
"vendor/bin/phpstan analyse --ansi --no-progress src"
]
},
"suggest": {
"polishsymfonycommunity/symfony-mocker-container": "For mocking container services and external APIs"
},
"autoload": {
"psr-4": {
"ApiTestCase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiTestCase\\Test\\": "test/src/",
"ApiTestCase\\Test\\App\\": "test/app/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.2-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}