-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 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
{
"name": "pccomponentes/documentation-bundle",
"description": "PcComponentes Documentation Bundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "José Gilberto Mullor",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PcComponentes\\DocumentationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PcComponentes\\DocumentationBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"pccomponentes/ddd": "^2.0 || ^3.0 || ^4.0"
},
"require-dev": {
"pccomponentes/coding-standard": "^1.0",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}