This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
53 lines (53 loc) · 1.51 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
{
"name": "gheb/configuration-converter-bundle",
"description": "Convert your API Platform configuration from a format to another",
"type": "symfony-bundle",
"require": {
"api-platform/core": ">=2.4.3 <=2.4.7",
"symfony/http-foundation": "^4.3",
"symfony/serializer": "^4.3",
"symfony/config": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/console": "^4.3",
"symfony/yaml": "^4.3",
"symfony/event-dispatcher": "^4.3",
"doctrine/annotations": "^1.6"
},
"license": "MIT",
"authors": [
{
"name": "Grégoire Hébert",
"email": "[email protected]"
}
],
"require-dev": {
"phpstan/phpstan": "^0.11.0@dev",
"friendsofphp/php-cs-fixer": "^2.15@dev",
"symfony/framework-bundle": "^4.3",
"phpunit/phpunit": "^8.0",
"symfony/form": "^4.0",
"symfony/validator": "^4.0",
"symfony/templating": "^4.0",
"symfony/twig-bundle": "^4.0",
"doctrine/doctrine-bundle": "1.8",
"doctrine/orm": "^2.6.3",
"symfony/doctrine-bridge": "^4.0",
"ext-dom": "*"
},
"autoload": {
"psr-4": {
"ConfigurationConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ConfigurationConverter\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}