-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
74 lines (74 loc) · 2.43 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
{
"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.1.0",
"cakephp/cakephp": "^4.5",
"firebase/php-jwt": "^6.9",
"cakephp/twig-view": "^1.3.0"
},
"require-dev": {
"cakephp/authentication": "^2.9",
"cakephp/authorization": "^2.2",
"cakephp/cakephp-codesniffer": "^4.7",
"league/oauth2-client": "^2.6",
"josegonzalez/dotenv": "^3.2",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^9.6"
},
"suggest": {
"cakephp/authentication": "^2.9 To use \"ApiIdentifier\", \"Identity\", \"IdentityHelper\" and other authentication features",
"cakephp/authorization": "^2.2 To use \"RequestPolicy\" and other authorization features"
},
"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-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",
"test": "vendor/bin/phpunit --colors=always",
"stan": "vendor/bin/phpstan analyse"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"cakephp/plugin-installer": true
}
}
}