-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.38 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
{
"name": "spiechu/symfony-commons-bundle",
"description": "My handy toolkit for Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"bundle",
"schema validation",
"api versioning",
"request overriding"
],
"homepage": "https://github.com/spiechu/symfony-commons-bundle",
"authors": [
{
"name": "Dawid Spiechowicz",
"email": "[email protected]",
"homepage": "http://spiechu.pl",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-xml": "*",
"symfony/framework-bundle": "~3.4|~4.0",
"sensio/framework-extra-bundle": "~3.0|~4.0|~5.0",
"justinrainbow/json-schema": "~5.0,<5.2.2|>=5.2.5,~5.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4.19|^4.0",
"symfony/yaml": "~3.4|~4.0",
"symfony/browser-kit": "~3.4|~4.0",
"symfony/var-dumper": "~3.4|~4.0",
"symfony/twig-bundle": "~3.4|^4.0",
"symfony/expression-language": "~3.4|^4.0",
"friendsofsymfony/rest-bundle": "~2.2",
"jms/serializer-bundle": "~2.2",
"phpstan/phpstan": "~0.9"
},
"autoload": {
"psr-4": {
"Spiechu\\SymfonyCommonsBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiechu\\SymfonyCommonsBundle\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}