-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
136 lines (130 loc) · 4.42 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": "schlaefer/saito",
"description": "Saito - The Threaded Forum",
"keywords": ["forum", "cakephp"],
"license": "MIT",
"homepage": "http://saito.siezi.com/",
"support": {
"issues": "https://github.com/Schlaefer/Saito/issues",
"source": "https://github.com/Schlaefer/Saito",
"support": {
"forum": "http://saito.siezi.com/forum/"
}
},
"config": {
"discard-changes": true
},
"require": {
"php": ">=7.2",
"cakephp/cakephp": "3.8.*",
"cakephp/migrations": "@stable",
"cakephp/plugin-installer": "*",
"josegonzalez/dotenv": "*",
"mobiledetect/mobiledetectlib": "2.*",
"aura/di": "^4.0",
"davidyell/proffer": "^1.0",
"jbbcode/jbbcode": "~1.4",
"markstory/geshi": "^3",
"siezi/cakephp-simple-captcha": "*",
"yzalis/identicon": "*",
"league/commonmark": "^1.0",
"suin/php-rss-writer": "^1.6",
"friendsofcake/bootstrap-ui": "dev-develop",
"friendsofcake/search": "^4.4",
"claviska/simpleimage": "^3.3",
"embed/embed": "^3.3",
"layershifter/tld-extract": "^2.0",
"cakephp/authentication": "^1.2",
"firebase/php-jwt": "^5.0"
},
"require-dev": {
"cakephp/bake": "~1.0",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "^3.19",
"psy/psysh": "@stable",
"phpunit/phpunit": "~6",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^0.11.8",
"phing/phing": "^2.16",
"symfony/css-selector": "*",
"symfony/dom-crawler": "*"
},
"suggest": {
"cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
},
"autoload": {
"psr-4": {
"App\\": "src",
"App\\Lib\\": "src/Lib",
"Saito\\": "src/Lib/Saito/",
"Saito\\Test\\": "tests/TestCase/Lib/Saito",
"Plugin\\": "plugins/",
"Admin\\": "plugins/Admin/src",
"Admin\\Test\\": "./plugins/Admin/tests",
"Api\\": "./plugins/Api/src",
"Api\\Test\\": "./plugins/Api/tests",
"BbcodeParser\\": "./plugins/BbcodeParser/src",
"BbcodeParser\\Test\\": "./plugins/BbcodeParser/tests",
"Bookmarks\\": "./plugins/Bookmarks/src",
"Bookmarks\\Test\\": "./plugins/Bookmarks/tests",
"Bota\\": "./plugins/Bota/src",
"Commonmark\\": "./plugins/Commonmark/src",
"Detectors\\": "./plugins/Detectors/src",
"Cron\\": "./plugins/Cron/src",
"MailObfuscator\\": "./plugins/MailObfuscator/src",
"Feeds\\": "./plugins/Feeds/src",
"Feeds\\Test\\": "./plugins/Feeds/tests",
"ImageUploader\\": "plugins/ImageUploader/src",
"ImageUploader\\Test\\": "plugins/ImageUploader/tests",
"Installer\\": "plugins/Installer/src",
"Installer\\Test\\": "plugins/Installer/tests",
"Local\\": "./plugins/Local/src/",
"Local\\Test\\": "./plugins/Local/tests/",
"SaitoHelp\\": "./plugins/SaitoHelp/src",
"SaitoSearch\\": "./plugins/SaitoSearch/src",
"Sitemap\\": "./plugins/Sitemap/src",
"Sitemap\\Test\\": "./plugins/Sitemap/tests",
"SpectrumColorpicker\\": "./plugins/SpectrumColorpicker/src",
"Stopwatch\\": "./plugins/Stopwatch/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"cs-check": "unset XDEBUG_CONFIG; phpcs --parallel=4 -p --colors --runtime-set ignore_warnings_on_exit true",
"cs-fix": "unset XDEBUG_CONFIG; phpcbf --parallel=4 -p --colors > /dev/null || true",
"check": ["@cs-fix", "@cs-check"],
"phpstan": "unset XDEBUG_CONFIG; vendor/bin/phpstan analyse --ansi",
"coverage": [
"Composer\\Config::disableProcessTimeout",
"unset XDEBUG_CONFIG; composer phpunit -- --coverage-html docs/local/"
],
"phpunit-stop": [
"Composer\\Config::disableProcessTimeout",
"phpunit --colors=always --stderr --stop-on-error --stop-on-failure"
],
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"unset XDEBUG_CONFIG; phpunit --colors=always"
],
"test": [
"@phpunit",
"@phpstan",
"@check"
],
"js-all": "yarn run test",
"test-all": [
"@test",
"@js-all"
]
},
"minimum-stability" : "dev",
"prefer-stable": true
}