This repository was archived by the owner on Feb 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.45 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.45 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
51
52
{
"name": "mixerapi/plugin",
"description": "CakePHP skeleton plugin",
"type": "project",
"license": "MIT",
"keywords": ["cakephp"],
"require": {
"php": ">=7.2",
"cakephp/cakephp": ">=4.0"
},
"require-dev": {
"phpunit/phpunit": "~8.5.0",
"cakephp/cakephp-codesniffer": "^4.2",
"phpstan/phpstan": "^0.12.32",
"phpmd/phpmd": "^2.8"
},
"autoload": {
"psr-4": {
"MixerApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MixerApi\\Test\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "MixerApi\\Console\\Console\\Installer::postInstall",
"post-create-project-cmd": "MixerApi\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check",
"@stan",
"@md"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/",
"stan": "phpstan analyse src/",
"test": "phpunit --colors=always",
"md": "phpmd src/ ansi phpmd.xml",
"coverage": "phpunit --coverage-html coverage-reports/"
},
"support": {
"source": "https://github.com/mixerapi/plugin"
},
"authors": [
{
"name": "MixerApi",
"role": "Organization"
}
]
}