-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.27 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.27 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "webeweb/edm-bundle",
"description": "An Electronic Document Management for Symfony 2 and more",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"webeweb",
"symfony",
"bundle",
"EDM",
"document",
"electronic",
"management"
],
"authors": [
{
"name": "webeweb",
"homepage": "https://github.com/webeweb"
}
],
"homepage": "https://github.com/webeweb/edm-bundle",
"support": {
"issues": "https://github.com/webeweb/edm-bundle/issues"
},
"require": {
"php": "^7.1|^8.0",
"ext-json": "*",
"ext-zip": "*",
"doctrine/orm": "^2.5.13|^3.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/asset": "^4.4|^5.0|^6.0|^7.0",
"symfony/console": "^4.4|^5.0|^6.0|^7.0",
"symfony/form": "^4.4|^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/translation": "^4.4|^5.0|^6.0|^7.0",
"symfony/validator": "^4.4|^5.0|^6.0|^7.0",
"twig/twig": "^2.10|^3.0",
"webeweb/core-library": "^9.5.6",
"webeweb/jquery-datatables-bundle": "dev-datatables-bundle"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.8.1|^2.0",
"masterminds/html5": "^2.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.0|^9.0",
"symfony/asset": "^4.4|^5.0|^6.0|^7.0",
"symfony/browser-kit": "^4.4|^5.0|^6.0|^7.0",
"symfony/css-selector": "^4.4|^5.0|^6.0|^7.0",
"symfony/monolog-bundle": "^3.0",
"symfony/security-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/security-csrf": "^4.4|^5.0|^6.0|^7.0",
"symfony/twig-bundle": "^4.4|^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"WBW\\Bundle\\EDMBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WBW\\Bundle\\EDMBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}