-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fusic/reincarnation",
"description": "CakePHP Reincarnation",
"type": "cakephp-plugin",
"keywords": ["cakephp", "soft delete"],
"homepage": "https://github.com/fusic/Reincarnation",
"license": "MIT",
"authors": [
{
"name": "Fusic",
"role": "Author"
}
],
"support": {
"source": "https://github.com/fusic/Reincarnation"
},
"require": {
"php": ">=8.1.0",
"cakephp/cakephp": "~5.0"
},
"require-dev": {
"josegonzalez/dotenv": "*",
"cakephp/migrations": "*",
"cakephp/cakephp-codesniffer": "*",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Reincarnation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Reincarnation\\Test\\": "tests",
"Reincarnation\\Test\\App\\": "tests/test_app/App",
"App\\Model\\Table\\": "tests/test_app/DummyApp/Model/Table/"
}
},
"suggest": {
},
"extra": {
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit --colors=always",
"phpcs": "phpcs --colors -p -s --standard=phpcs.xml.dist config/ src/ tests/",
"phpcbf": "phpcbf --colors --parallel=16 -p config/ src/ tests/"
}
}