-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.4 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.4 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
69
70
71
72
73
74
{
"name": "markstory/docket-app",
"description": "An Open Source task management application inspired by Todoist and Things intended for self-hosting.",
"homepage": "https://mark-story.com",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/authentication": "^3.0",
"cakephp/authorization": "^3.0",
"cakephp/cakephp": "^5.3.0",
"cakephp/migrations": "^5.0.0",
"cakephp/plugin-installer": "^2.0",
"google/apiclient": "^2.0",
"markstory/cakephp-feature-flags": "dev-main",
"paragonie/csp-builder": "^3.0.0",
"sentry/sentry": "^4.8",
"symfony/html-sanitizer": "^6.4"
},
"require-dev": {
"ext-dom": "*",
"ext-zip": "*",
"cakephp/bake": "^3.1",
"cakephp/cakephp-codesniffer": "~5.1.0",
"cakephp/debug_kit": "^5.0",
"cakephp/repl": "^2.0",
"php-vcr/php-vcr": "^1.7.0",
"phpunit/phpunit": "^11.5.3",
"symfony/panther": "^2.1.0"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Calendar\\": "plugins/Calendar/src/",
"Feeds\\": "plugins/Feeds/src/",
"Tasks\\": "plugins/Tasks/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Calendar\\Test\\": "plugins/Calendar/tests/",
"Feeds\\Test\\": "plugins/Feeds/tests/",
"Tasks\\Test\\": "plugins/Tasks/tests/"
}
},
"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/",
"phpstan": "tools/phpstan analyse",
"stan": "@phpstan",
"stan-baseline": "tools/phpstan --generate-baseline",
"stan-setup": "phive install",
"test": "phpunit --colors=always"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.29"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true,
"php-http/discovery": true
}
}
}