-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (33 loc) · 878 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (33 loc) · 878 Bytes
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
{
"name": "st3ph/cakephp-softdeletable",
"description": "CakePHP 3.x plugin to handle soft deletable models)",
"type": "cakephp-plugin",
"keywords": ["cakephp", "plugin", "soft deletable", "behavior", "trait"],
"license": "MIT",
"authors": [
{
"name": "Stéphane Litou",
"email": "contact@stephane-litou.com",
"homepage": "http://stephane-litou.com",
"role": "Developer"
}
],
"require": {
"cakephp/cakephp": ">=3.2.0"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"SoftDeletable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SoftDeletable\\Test\\": "tests"
}
},
"minimum-stability": "beta"
}