-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (68 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "rich-id/excel-generator-bundle",
"description": "A excel bundle for Symfony 4.4",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.fr"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/rich-id/excel-generator-bundle",
"docs": "https://github.com/rich-id/excel-generator-bundle/blob/master/README.md",
"issues": "https://github.com/rich-id/excel-generator-bundle/issues"
},
"require": {
"php": ">=7.3",
"doctrine/annotations": "^1.12",
"phpoffice/phpspreadsheet": "^1.16",
"richcongress/bundle-toolbox": "^1.0",
"symfony/expression-language": "^4|^5",
"symfony/serializer-pack": "^1.0",
"symfony/translation": "^4|^5",
"symfony/validator": "^4|^5"
},
"require-dev": {
"infection/infection": "^0.16.4",
"php-coveralls/php-coveralls": "^2.1",
"richcongress/static-analysis": "dev-master",
"richcongress/test-suite": "^0.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"RichId\\ExcelGeneratorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RichId\\ExcelGeneratorBundle\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"cghooks add --ignore-lock"
],
"post-update-cmd": [
"cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"./bin/php-cs-fixer fix"
],
"pre-push": [
"./bin/php-cs-fixer fix --dry-run"
]
}
}
}