-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
107 lines (107 loc) · 3.78 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
{
"name": "fiste788/fantamanajer",
"description": "FantaManajer API backend written in PHP",
"license": "MIT",
"type": "project",
"homepage": "https://fantamanajer.it",
"require": {
"php": ">=8.3",
"burzum/cakephp-service-layer": "^3.0",
"cakephp/authentication": "^3.0",
"cakephp/authorization": "^3.0",
"cakephp/bake": "^3.0",
"cakephp/cakephp": "^5.0",
"cakephp/plugin-installer": "^2.0",
"cakephp/repl": "^2.0",
"cnizzardini/cakephp-preloader": "^1.0",
"fiste788/cake-scheduler": "dev-master",
"friendsofcake/crud": "^7.0",
"get-stream/stream": "^7.0",
"josegonzalez/dotenv": "^4.0",
"josegonzalez/cakephp-upload": "^8.0",
"spatie/image": "^3.3",
"spomky-labs/web-push-lib": "2.0.x-dev",
"symfony/css-selector": "^7.0",
"symfony/dom-crawler": "^7.0",
"symfony/finder": "^7.0",
"symfony/property-access": "^7.0",
"symfony/serializer": "^7.0",
"symfony/uid": "^7.0",
"web-auth/webauthn-lib": "^5.0",
"web-token/jwt-library": "^4.0",
"whichbrowser/parser": "^2.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/debug_kit": "^5.0",
"cakephp/migrations": "^4.1",
"dereuromark/cakephp-ide-helper": "^2.1",
"ergebnis/composer-normalize": "^2.13",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5.5",
"vimeo/psalm": "^5.18"
},
"suggest": {
"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 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."
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/fiste788/cake-scheduler.git"
},
{
"type": "vcs",
"url": "https://github.com/fiste788/web-push-lib.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/",
"StreamCake\\": "plugins/StreamCake/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"StreamCake\\Test\\": "plugins/StreamCake/tests/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"platform-check": true,
"sort-packages": true
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"psalm": "psalm",
"stan": "phpstan analyse --memory-limit=-1",
"test": "phpunit --colors=always",
"test:all": [
"composer test:unit",
"composer test:typing",
"composer test:syntax"
],
"test:syntax": "@cs-fix",
"test:typing": "@stan",
"test:unit": "@test"
}
}