-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
97 lines (79 loc) · 3.33 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "badpixxel/brevo-bridge",
"description": "Symfony Bundle to Manage Sending User Email via Brevo Transactional API",
"type": "symfony-bundle",
"keywords": ["Symfony", "Bundle", "Mailer", "PHP", "Sendinblue", "Brevo", "API", "Bridge"],
"homepage": "https://www.badpixxel.com",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "BadPixxel",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "BadPixxel\\BrevoBridge\\": "src" }
},
"autoload-dev": {
"psr-4": { "BadPixxel\\BrevoBridge\\Tests\\": "tests" }
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/event-dispatcher": "^5.4 || ^6.4",
"symfony/options-resolver": "^5.4 || ^6.4",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^2.0",
"twig/extra-bundle": "^2.0|^3.0",
"twig/intl-extra": "^2.0|^3.0",
"getbrevo/brevo-php": "^1.0",
"sonata-project/user-bundle": ">4.0",
"knplabs/knp-time-bundle": ">1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"badpixxel/php-sdk": "dev-main",
"badpixxel/paddock-mysql": "dev-main",
"symfony/http-kernel": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/runtime": "^5.4",
"symfony/mailer": "^5.4",
"symfony/phpunit-bridge": ">5.0",
"symfony/debug-pack": "^1.0",
"sonata-project/admin-bundle": "^4.0",
"sonata-project/doctrine-orm-admin-bundle": ">4.0",
"phpunit/phpunit": ">9"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": [
"php bin/console cache:clear --no-debug",
"php bin/console assets:install --relative",
"php bin/console doctrine:schema:update --force --complete --no-interaction --no-debug",
"find var/cache/dev/*.xml | while read -r i; do cp \"$i\" var/cache/dev/testContainer.xml; done"
],
"post-install-cmd": [
"@auto-scripts",
"php bin/console sonata:user:create admin [email protected] admin --super-admin || exit 0"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"archive": {
"exclude": ["/bin", "/tests"]
},
"extra": {
"public-dir": "tests/public"
}
}