-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 1005 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
40
{
"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": "^4.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5.23",
"cakephp/cakephp-codesniffer": "^4.0",
"cakephp/migrations": "^3.7",
"php-coveralls/php-coveralls": "^2.1"
},
"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
}
}
}