forked from lorenzo/cakephp-email-queue
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 973 Bytes
/
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
{
"name": "lorenzo/cakephp-email-queue",
"description": "Queue, preview and and send emails stored in the database",
"type": "cakephp-plugin",
"keywords": ["cakephp", "email", "queue", "cron", "preview"],
"homepage": "https://github.com/lorenzo/cakephp-email-queue",
"license": "MIT",
"authors": [
{
"name": "José Lorenzo Rodríguez",
"role": "Author"
}
],
"require": {
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.5 || ^11.1.3",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/migrations": "^4.0"
},
"autoload": {
"psr-4": {
"EmailQueue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EmailQueue\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}