-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.25 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
70
71
72
73
74
{
"name": "rich-id/pdf-template-bundle",
"description": "PDF template bundle",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.com"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/rich-id/pdf-template-bundle",
"docs": "https://github.com/rich-id/pdf-template-bundle/blob/master/README.md",
"issues": "https://github.com/rich-id/pdf-template-bundle/issues"
},
"require": {
"php": "^8.1",
"chrome-php/chrome": "^1.7",
"doctrine/migrations": "^3.0",
"doctrine/orm": "^2.7 || ^3.0",
"knplabs/knp-gaufrette-bundle": "^0.9.0",
"mikehaertl/php-pdftk": "^0.13.1",
"richcongress/bundle-toolbox": "^2.0",
"symfony/translation": "^6.0 || ^7.0",
"symfony/twig-bundle": "^6.0 || ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"phpunit/phpunit": "^9.5",
"richcongress/static-analysis": "^0.2",
"richcongress/test-suite": "^0.2",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"RichId\\PdfTemplateBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RichId\\PdfTemplateBundle\\Tests\\": "tests/"
}
},
"config": {
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks add --ignore-lock"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"docker-compose exec -T application ./vendor/bin/php-cs-fixer fix ."
],
"pre-push": [
"docker-compose exec -T application ./vendor/bin/php-cs-fixer fix . --dry-run",
"docker-compose exec -T application ./vendor/bin/static_analysis"
]
}
}
}