forked from PGBI/cakephp3-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 824 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
{
"name": "adoultremont/cakephp3-soft-delete",
"description": "SoftDelete plugin for CakePHP",
"keywords": ["cakephp", "cakephp 3", "plugin", "soft", "delete", "deletable"],
"homepage": "https://github.com/pgbi/cakephp3-soft-delete",
"type": "cakephp-plugin",
"license": "MIT",
"support": {
"source": "https://github.com/pgbi/cakephp3-soft-delete"
},
"require": {
"php": ">=5.4",
"cakephp/plugin-installer": "*",
"cakephp/cakephp": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"SoftDelete\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SoftDelete\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}