-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1.08 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": "connehito/cakephp-master-replica",
"description": "Provides the features for multiple database connections as master/replica and switching.",
"type": "cakephp-plugin",
"require": {
"php": ">=7.2",
"cakephp/database": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"cakephp/cakephp": "^4.0",
"cakephp/cakephp-codesniffer": "^4.0"
},
"license": "MIT",
"authors": [
{
"name": "Hideki Kinjyo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Connehito\\CakephpMasterReplica\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Connehito\\CakephpMasterReplica\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p ./src ./tests/TestCase",
"stan": "phpstan.phar analyse src/ tests/TestCase",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:@stable && mv composer.backup composer.json"
}
}