This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
59 lines (59 loc) · 1.92 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
{
"name": "symfony-cmf/resource-rest-bundle",
"description": "Bundle which provides a REST API for resources",
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/symfony-cmf/contributors"
}
],
"require": {
"php": "^7.2",
"symfony-cmf/resource-bundle": "^1.0",
"jms/serializer-bundle": "^2.0 || ^3.0"
},
"require-dev": {
"symfony-cmf/testing": "^2.1@dev",
"symfony/phpunit-bridge": "^5",
"doctrine/phpcr-odm": "^1.4|^2.0",
"behat/behat": "^3.0.6",
"imbo/behat-api-extension": "^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^4",
"matthiasnoback/symfony-config-test": "^4",
"symfony/twig-bundle": "^2.8 || ^3.3 || ^4.0",
"symfony/validator": "^2.8 || ^3.3 || ^4.0",
"symfony/security-bundle": "^2.8 || ^3.3 || ^4.0",
"symfony/asset": "^2.8 || ^3.3 || ^4.0",
"symfony/templating": "^2.8 || ^3.3 || ^4.0",
"symfony/form": "^2.8 || ^3.3 || ^4.0",
"symfony/web-server-bundle": "^2.8 || ^3.3 || ^4.0",
"phpspec/prophecy": "^1.12"
},
"suggest": {
"doctrine/phpcr-odm": "To enable support for the PHPCR ODM documents (^1.2)",
"doctrine/phpcr-bundle": "To enable support for the PHPCR ODM documents"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\ResourceRestBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Bundle\\ResourceRestBundle\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"conflict": {
"jms/serializer": "<2.2.0",
"sebastian/environment": "<1.3.4",
"sebastian/exporter": "<2.0.0"
},
"type": "symfony-bundle"
}