-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.16 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
{
"name": "bowlofsoup/normalizer-bundle",
"description": "Normalizer for objects.",
"keywords": ["normalizer", "representation", "object", "array"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "BowlOfSoup",
"homepage": "https://github.com/BowlOfSoup"
}
],
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-dom": "*",
"doctrine/annotations": "1.*",
"doctrine/cache": "~1.0",
"php": ">=7.2",
"symfony/framework-bundle": "~3.4|~4.4|~5.0",
"symfony/translation": "~3.4|~4.4|~5.0"
},
"require-dev": {
"doctrine/common": "~2.12",
"doctrine/collections": "1.*",
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.10"
},
"autoload": {
"psr-4": { "BowlOfSoup\\NormalizerBundle\\": "src/" },
"classmap": [
"tests/DummyTranslator.php",
"tests/NormalizerTestTrait.php"
]
},
"autoload-dev": {
"psr-4": { "BowlOfSoup\\NormalizerBundle\\Tests\\": "tests/" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}