-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.46 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.46 KB
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
{
"name": "mirko-pagliai/cakephp-database-backup",
"description": "Database Backup plugin for CakePHP",
"homepage": "https://github.com/mirko-pagliai/cakephp-database-backup",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Mirko Pagliai",
"email": "mirko.pagliai@gmail.com"
}
],
"require": {
"php": ">=8.4",
"cakephp/cakephp": "^5.2.10",
"league/container": "^4.2.3|^5.1",
"symfony/filesystem": "^6.4.1|^7.2",
"symfony/process": "^7.4.5"
},
"require-dev": {
"cakedc/cakephp-phpstan": "^4.0",
"cakephp/cakephp-codesniffer": "^5.3",
"cakephp/migrations": "^4.0",
"phpunit/phpunit": "^10.5.62 || ^11.5.50 || ^12.5.22",
"symfony/finder": "^6.0|^7.2",
"mockery/mockery": "^1.6.10"
},
"autoload": {
"psr-4": {
"DatabaseBackup\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/test_app/TestApp/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"DatabaseBackup\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --display-skipped --display-deprecations --display-warnings",
"test-coverage-local": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage",
"test-real-drivers": "vendor/bin/phpunit --testsuite=real-drivers --display-skipped --display-deprecations --display-warnings"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}