-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (63 loc) · 1.89 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
{
"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.1",
"cakephp/authentication": "^3.0",
"cakephp/authorization": "^3.0",
"cakephp/cakephp": "^5.1.0",
"cakephp/migrations": "^4.3.0",
"cakephp/plugin-installer": "^2.0",
"google/apiclient": "^2.0",
"paragonie/csp-builder": "^2.5",
"sentry/sentry": "^4.8"
},
"require-dev": {
"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.5",
"phpunit/phpunit": "^10.1.0 <=10.5.3",
"symfony/panther": "^2.1.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/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/",
"psalm": "tools/psalm --show-info=false",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.26"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true,
"php-http/discovery": true
}
}
}