-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "tyrellsys/cakephp3-aws-ses-transport",
"description": "AwsSesTransport plugin for CakePHP5",
"type": "cakephp-plugin",
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0",
"aws/aws-sdk-php": "^3.133"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"CakePHP3AwsSesTransport\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakePHP3AwsSesTransport\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform-check": true,
"sort-packages": true
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"cs-check": "phpcs --colors -p"
}
}