-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
99 lines (99 loc) · 3.29 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
{
"name": "mapik/watcher-nms",
"description": "Watcher NMS",
"license": "GPL-2.0-only",
"type": "project",
"authors": [
{
"name": "Martin Patočka",
"email": "mapik@mapik.net"
}
],
"homepage": "https://github.com/Mapiiik/Watcher-NMS",
"support": {
"issues": "https://github.com/Mapiiik/Watcher-NMS/issues",
"source": "https://github.com/Mapiiik/Watcher-NMS"
},
"require": {
"php": ">=8.1",
"cakedc/users": "^14.0.0",
"cakephp/cakephp": "^5.0.6",
"cakephp/migrations": "^4.0.0",
"cakephp/plugin-installer": "^2.0",
"composer/composer": "^2.6.6",
"dereuromark/cakephp-geo": "^3.0.0",
"geocoder-php/google-maps-provider": "^4.7.1",
"league/oauth2-google": "^4.0",
"mapik/audit-log": "^5.0",
"mobiledetect/mobiledetectlib": "^4.8"
},
"require-dev": {
"cakedc/cakephp-phpstan": "^4.0.0",
"cakephp/bake": "^3.0.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/debug_kit": "^5.0.0",
"josegonzalez/dotenv": "^4.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.1.0",
"psalm/phar": "^5.12"
},
"suggest": {
"cakephp/repl": "Console tools for a REPL interface for CakePHP applications.",
"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.",
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"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."
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"platform-check": true,
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"App\\Console\\Installer::postInstall"
],
"post-update-cmd": [],
"post-create-project-cmd": [
"@migrations",
"@schema-cache"
],
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"migrations": [
"bin/cake migrations migrate --plugin CakeDC/Users",
"bin/cake migrations migrate"
],
"schema-cache": [
"bin/cake schema_cache build"
],
"stan": "phpstan analyse",
"test": "phpunit --colors=always"
},
"extra": {
"discovery": {
"psr/http-client-implementation": "Cake\\Http\\Client"
}
}
}