generated from rich-id/bundle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.23 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
{
"name": "rich-id/email-customization-bundle",
"description": "Email customization bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.com"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/rich-id/email-customization-bundle",
"docs": "https://github.com/rich-id/email-customization-bundle/blob/master/README.md",
"issues": "https://github.com/rich-id/email-customization-bundle/issues"
},
"require": {
"php": "^8.0",
"doctrine/migrations": "^3.0",
"doctrine/orm": "^2.7",
"fresh/doctrine-enum-bundle": "^7.5",
"richcongress/bundle-toolbox": "^1.1",
"sensio/framework-extra-bundle": "^5.4|^6.0",
"swiftmailer/swiftmailer": "^6.2",
"symfony/cache": "^5.4",
"symfony/routing": "^5.4",
"symfony/security-bundle": "^5.4",
"symfony/translation": "^5.4",
"symfony/twig-bundle": "^5.4"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"phpunit/phpunit": "^9.5",
"richcongress/static-analysis": "^0.1",
"richcongress/test-suite": "^0.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"RichId\\EmailCustomizationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RichId\\EmailCustomizationBundle\\Tests\\": "tests/"
}
},
"config": {
"discard-changes": true,
"sort-packages": 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"
]
}
}
}