-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.71 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.71 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
75
76
77
78
79
80
81
82
83
{
"name": "bedita/web-tools",
"description": "Tools for CakePHP apps that use BEdita API",
"type": "cakephp-plugin",
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/bedita/web-tools",
"issues": "https://github.com/bedita/web-tools/issues"
},
"authors": [
{
"name": "ChannelWeb s.r.l.",
"email": "info@channelweb.it",
"homepage": "https://www.channelweb.it"
},
{
"name": "Chia Lab s.r.l.",
"email": "dev@chialab.it",
"homepage": "http://www.chialab.it"
}
],
"require": {
"php": ">=8.3",
"bedita/php-sdk": "^4.2.0",
"cakephp/cakephp": "^5.0",
"firebase/php-jwt": "^7.0",
"cakephp/twig-view": "^2"
},
"require-dev": {
"cakephp/authentication": "^3.0.3",
"cakephp/authorization": "^3.1.2",
"cakephp/cakephp-codesniffer": "^5.0",
"league/oauth2-client": "^2.6",
"josegonzalez/dotenv": "^3.2",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^11.1.3",
"vimeo/psalm": "^6.8"
},
"autoload": {
"psr-4": {
"BEdita\\WebTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\WebTools\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/test_app/TestApp/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-setup": [
"vendor/bin/phpcs --config-set installed_paths vendor/cakephp/cakephp-codesniffer",
"vendor/bin/phpcs --config-set default_standard CakePHP",
"vendor/bin/phpcs --config-set colors 1"
],
"cs-check": "vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "vendor/bin/phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"psalm": "vendor/bin/psalm",
"stan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --colors=always",
"coverage": "vendor/bin/phpunit --colors=always --coverage-html coverage",
"update-dev": [
"@composer update",
"@cs-setup"
]
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true,
"phpstan/extension-installer": true
}
}
}