-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.29 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
{
"name": "jane-php/api-platform-bridge",
"type": "library",
"description": "Jane AutoMapper ApiPlatform Bridge",
"keywords": ["bridge", "symfony", "automapper", "api-platform"],
"homepage": "https://github.com/janephp/janephp",
"license": "MIT",
"authors": [
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"jane-php/automapper": "^7.0"
},
"require-dev": {
"api-platform/core": "^2.5",
"phpunit/phpunit": "^8.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"sensio/framework-extra-bundle": "^5.6",
"symfony/twig-bundle": "^4.4 || ^5.0"
},
"conflict": {
"symfony/framework-bundle": "5.1.0"
},
"extra": {
"branch-alias": {
"dev-next": "7-dev"
}
},
"autoload": {
"psr-4": {
"Jane\\Bridge\\ApiPlatform\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"classmap": [
"Tests/Resources/app/AppKernel.php"
]
},
"config": {
"process-timeout": 1800,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}