-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
136 lines (136 loc) · 4.83 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "cakephp/app",
"description": "CakePHP skeleton app",
"homepage": "https://cakephp.org",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": ">=1.5",
"cakephp/authentication": "^2.0",
"cakephp/authorization": "^2.0",
"cakephp/cakephp": "^4.3",
"cakephp/elastic-search": "^3.0",
"cakephp/migrations": "^3.0",
"cakephp/plugin-installer": "^1.0",
"dereuromark/cakephp-ajax": "^2.0",
"dereuromark/cakephp-databaselog": "^3.0",
"dereuromark/cakephp-dto": "^1.0",
"dereuromark/cakephp-expose": "^1.4",
"dereuromark/cakephp-flash": "^2.0",
"dereuromark/cakephp-queue": "^6.3.1",
"dereuromark/cakephp-tags": "^1.1",
"dereuromark/cakephp-tools": "^2.4",
"friendsofcake/bootstrap-ui": "^3.0",
"friendsofcake/search": "^6.0",
"google/apiclient": "^2.0",
"guzzlehttp/psr7": "^1.5",
"jomweb/cake-impersonate": "^4.0",
"josbeir/cakephp-filesystem": "3.0-alpha.2",
"league/commonmark": "^1.1",
"league/flysystem-aws-s3-v3": "^3.0",
"mobiledetect/mobiledetectlib": "^2.0",
"muffin/footprint": "^2.0",
"muffin/trash": "^3.0.0",
"muffin/webservice": "^3.0.0",
"php-http/guzzle7-adapter": "^1.0",
"sparkpost/sparkpost": "^2.3",
"symfony/yaml": "^5.0",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"twilio/sdk": "^5.34",
"webonyx/graphql-php": "^0.13.8"
},
"require-dev": {
"cakephp/bake": "^2.0",
"cakephp/cakephp-codesniffer": "^4.0",
"cakephp/debug_kit": "^4.0",
"cakephp/repl": "^0.1.0",
"dereuromark/cakephp-ide-helper": "^1.0",
"dereuromark/cakephp-test-helper": "^1.0",
"josegonzalez/dotenv": "3.*",
"phan/phan": "^4.0",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^0.12",
"phpunit/php-code-coverage": "@stable",
"phpunit/phpunit": "^8.0",
"psy/psysh": "@stable",
"slevomat/coding-standard": "^6.1",
"vierge-noire/cakephp-fixture-factories": "^2.0",
"vierge-noire/cakephp-test-migrator": "^2.0"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification."
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": [
"@console-install",
"@migrate",
"@install-base",
"@symlink"
],
"post-create-project-cmd": "@console-install",
"console-install": "App\\Console\\Installer::postInstall",
"fixture-check": "bin/cake fixture_check",
"check": [
"@cs-check",
"composer validate",
"@fixture-check",
"@phpstan-check"
],
"fix": [
"@annotate",
"@illuminate",
"@code-complete",
"@phpstorm",
"@cs-fix"
],
"coding-standards": "@cs-check",
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ templates/ config/",
"md-check": "phpmd --strict src/ ansi cleancode",
"phpstan-check": "vendor/bin/phpstan analyse src tests",
"phan-check": "vendor/bin/phan",
"annotate": "bin/cake annotate all",
"illuminate": "bin/cake illuminator illuminate",
"phpstorm": "bin/cake phpstorm generate",
"code-complete": "bin/cake code_completion generate",
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit --colors=always"
],
"test-with-coverage": [
"Composer\\Config::disableProcessTimeout",
"phpunit --colors=always --coverage-clover clover.xml"
],
"migrate": [
"@migrate-app",
"@migrate-queue",
"@migrate-tags"
],
"migrate-app": "bin/cake migrations migrate",
"migrate-queue": "bin/cake migrations migrate -p Queue",
"migrate-tags": "bin/cake migrations migrate -p Tags",
"symlink": "bin/cake plugin assets symlink",
"install-base": "bin/cake install_base -a"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}