-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 2.87 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
75
76
77
{
"name": "arthusantiago/keyanywhere",
"description": "KeyAnyWhere or KAW, is a simple user and password manager",
"homepage": "https://keyanywhere.com.br/",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Arthu Santiago",
"email": "contato@avds.eti.br",
"homepage": "https://avds.eti.br",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"bacon/bacon-qr-code": "^3.0",
"cakephp/authentication": "^2.0",
"cakephp/cakephp": "^4.4",
"cakephp/migrations": "@stable",
"cakephp/plugin-installer": "^2.0",
"matthiasmullie/minify": "^1.3",
"mobiledetect/mobiledetectlib": "^4.8",
"pragmarx/google2fa": "^8.0",
"twbs/bootstrap": "@stable",
"twbs/bootstrap-icons": "@stable",
"voku/anti-xss": "^4.1"
},
"require-dev": {
"cakephp/bake": "^2.6",
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/debug_kit": "^4.5",
"josegonzalez/dotenv": "^4.0",
"phpunit/phpunit": "^10.5.24"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.",
"phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code.",
"cakephp/repl": "Console tools for a REPL interface for CakePHP applications."
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Config\\": "config/"
}
},
"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/",
"stan": "phpstan analyse",
"test": "phpunit --colors=always",
"minificar-assets": "Config\\Tools\\Minificador::executar",
"post-package-install": "Config\\Tools\\PreparaAssets::postPackageInstall",
"post-package-update": "Config\\Tools\\PreparaAssets::postPackageUpdate"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}