-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.17 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
{
"name": "gestionlan/framework",
"license": "proprietary",
"version":"0.2.1",
"description":"",
"authors": [
{
"name": "Manuel Muñoz Rosa",
"email": "mmunoz@gestionlan.com"
}
],
"autoload" : {
"psr-4": {
"GLFramework\\": "src/"
},
"files": [
"src/functions.php"
]
},
"bin": ["bin/gl"],
"require": {
"twig/twig": "~1.0",
"symfony/yaml": "~6.1|~5.2",
"altorouter/altorouter": "2.0.1",
"phpmailer/phpmailer": "~6.5",
"wikimedia/composer-merge-plugin": "v2.0.0",
"nuovo/spreadsheet-reader": "*",
"tijsverkoyen/css-to-inline-styles": "^1.5",
"maximebf/debugbar": "1.*",
"psr/log": ">= 1.0.0",
"symfony/dom-crawler": "^3.0",
"swiftmailer/swiftmailer": "^5.4",
"tecnickcom/tcpdf": "^6.2",
"phpoffice/phpexcel": "^1.8",
"mtdowling/cron-expression": "^1.2",
"doctrine/orm": "^2.6",
"symfony/translation": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"extra": {
"merge-plugin": {
"include": [
"modules/*/composer.json"
]
}
},
"config": {
"allow-plugins": {
"wikimedia/composer-merge-plugin": true
}
}
}