-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.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
{
"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.13.0",
"php": ">=7.2",
"symfony/framework-bundle": "~5.4",
"symfony/translation": "~5.4",
"symfony/cache": "~5.4"
},
"require-dev": {
"doctrine/common": "~3.0",
"doctrine/collections": "1.*",
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"rector/rector": "^1.0.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3"
},
"autoload": {
"psr-4": { "BowlOfSoup\\NormalizerBundle\\": "src/" },
"classmap": [
"tests/NormalizerTestTrait.php"
]
},
"autoload-dev": {
"psr-4": { "BowlOfSoup\\NormalizerBundle\\Tests\\": "tests/" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
}
}