-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.97 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.97 KB
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
{
"name" : "phantomwatson/ether",
"description" : "The Ether - Thought Repository",
"homepage" : "https://theether.com",
"type" : "project",
"license" : "proprietary",
"require" : {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"cakephp/cakephp": "4.4.*",
"cakephp/migrations": "^3.2",
"cakephp/plugin-installer": "^1.3",
"flesler/jquery.scrollto": "*",
"google/cloud-text-to-speech": "^1.4",
"league/commonmark": "*",
"mobiledetect/mobiledetectlib": "^3.74",
"phantomwatson/ether-markov": "*",
"twbs/bootstrap": "^5.1.3",
"alek13/slack": "^2.0"
},
"require-dev" : {
"cakephp/bake": "^2.6",
"cakephp/cakephp-codesniffer": "^4.5",
"cakephp/debug_kit": "^4.5",
"josegonzalez/dotenv": "^3.2",
"phpunit/phpunit": "~8.5.0 || ^9.3",
"league/html-to-markdown" : "~4.0",
"psy/psysh" : "@stable"
},
"suggest" : {
"phpunit/phpunit" : "Allows automated tests to be run without system-wide install.",
"cakephp/cakephp-codesniffer" : "Allows to check the code against the coding standards used in CakePHP."
},
"autoload" : {
"psr-4" : {
"App\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"App\\Test\\" : "tests",
"Cake\\Test\\" : "./vendor/cakephp/cakephp/tests",
"HTML_To_Markdown\\": "./vendor/league/html-to-markdown"
}
},
"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 src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"stan": "phpstan analyse",
"test": "phpunit --colors=always"
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}