-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
119 lines (119 loc) · 5.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "mixerapi/mixerapi-dev",
"description": "MixerAPI Development",
"homepage": "https://mixerapi.com",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"adbario/php-dot-notation": "^2.3",
"cakephp/cakephp": "^5.0",
"cakephp/migrations": "^4.0",
"cakephp/plugin-installer": "^1.3",
"cnizzardini/cakephp-swagger-bake": "^3.0",
"kcs/class-finder": "^0.3",
"mixerapi/core": "^2.0",
"mobiledetect/mobiledetectlib": "^2.8"
},
"require-dev": {
"ext-mysqli": "*",
"ext-sqlite3": "*",
"cakephp/authentication": "^3.0",
"cakephp/bake": "^3.0",
"cakephp/cakephp-codesniffer": "^4.2",
"cakephp/debug_kit": "5.x-dev",
"dereuromark/cakephp-ide-helper": "^2.0",
"firebase/php-jwt": "^6.2",
"friendsofcake/search": "^7.0",
"josegonzalez/dotenv": "^3.2",
"phpmd/phpmd": "~2.10.0",
"phpstan/phpstan": "^1.8.5",
"phpunit/phpunit": "^10.0",
"psy/psysh": "@stable"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.",
"phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code."
},
"autoload": {
"psr-4": {
"App\\": "src/",
"MixerApi\\": "plugins/mixerapi/src/",
"MixerApi\\Bake\\": "plugins/bake/src/",
"MixerApi\\CollectionView\\": "plugins/collection-view/src/",
"MixerApi\\Crud\\": "plugins/crud/src/",
"MixerApi\\ExceptionRender\\": "plugins/exception-render/src/",
"MixerApi\\HalView\\": "plugins/hal-view/src/",
"MixerApi\\JsonLdView\\": "plugins/json-ld-view/src/",
"MixerApi\\JwtAuth\\": "plugins/jwt-auth/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"MixerApi\\Bake\\Test\\": "plugins/bake/tests/",
"MixerApi\\Bake\\Test\\App\\": "plugins/bake/tests/test_app/src/",
"MixerApi\\CollectionView\\Test\\": "plugins/collection-view/tests/",
"MixerApi\\CollectionView\\Test\\App\\": "plugins/collection-view/tests/test_app/src/",
"MixerApi\\Crud\\Test\\": "plugins/crud/tests/",
"MixerApi\\Crud\\Test\\App\\": "plugins/crud/tests/test_app/src/",
"MixerApi\\ExceptionRender\\Test\\": "plugins/exception-render/tests/",
"MixerApi\\ExceptionRender\\Test\\App\\": "plugins/exception-render/tests/test_app/src/",
"MixerApi\\HalView\\Test\\": "plugins/hal-view/tests/",
"MixerApi\\HalView\\Test\\App\\": "plugins/hal-view/tests/test_app/src/",
"MixerApi\\JsonLdView\\Test\\": "plugins/json-ld-view/tests/",
"MixerApi\\JsonLdView\\Test\\App\\": "plugins/json-ld-view/tests/test_app/src/",
"MixerApi\\JwtAuth\\Test\\": "plugins/jwt-auth/tests/",
"MixerApi\\JwtAuth\\Test\\App\\": "plugins/jwt-auth/tests/test_app/src/",
"MixerApi\\Test\\": "plugins/mixerapi/tests/",
"MixerApi\\Test\\App\\": "plugins/mixerapi/tests/test_app/src/"
}
},
"scripts": {
"analyze": [
"@test",
"@phpcs",
"@phpstan",
"@phpmd"
],
"test": "vendor/bin/phpunit",
"phpcs": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP plugins/*/src",
"phpcbf": "phpcbf --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP plugins/*/src",
"phpstan": "phpstan analyse plugins/*/src",
"phpmd": "phpmd plugins --exclude tests,assets,config ansi phpmd.xml",
"coverage": "phpunit --coverage-html coverage-reports/",
"mkdocs-run": [
"@cakephp-swagger-bake",
"docker run --rm -it --network=host -v ${PWD}:/docs --user $(id -u):$(id -g) systematical/mixerapidocs:latest"
],
"mkdocs-build": [
"docker pull systematical/mixerapidocs:latest",
"git pull",
"@cakephp-swagger-bake",
"docker run --rm --network=host -v ${PWD}:/docs --user $(id -u):$(id -g) systematical/mixerapidocs:latest mkdocs build"
],
"cakephp-swagger-bake": [
"rm -rf plugins/cakephp-swagger-bake",
"git clone https://github.com/cnizzardini/cakephp-swagger-bake plugins/cakephp-swagger-bake",
"rm -rf plugins/cakephp-swagger-bake/.github plugins/cakephp-swagger-bake/assets",
"rm -rf plugins/cakephp-swagger-bake/src plugins/cakephp-swagger-bake/templates",
"rm -rf plugins/cakephp-swagger-bake/tests plugins/cakephp-swagger-bake/webroot",
"rm -rf plugins/cakephp-swagger-bake/*.xml plugins/cakephp-swagger-bake/*.json",
"rm -rf plugins/cakephp-swagger-bake/*.gitignore plugins/cakephp-swagger-bake/*.neon"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}