forked from passbolt/passbolt_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 4.3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "passbolt/passbolt_api",
"description": "Open source password manager for teams",
"type": "application",
"keywords": [
"password",
"passbolt"
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.3"
}
},
"homepage": "https://www.passbolt.com",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Passbolt Team",
"homepage": "https://www.passbolt.com/credits"
}
],
"support": {
"bugs": "https://github.com/passbolt/passbolt/issues",
"help": "https://www.passbolt.com/help",
"source": "https://github.com/passbolt/passbolt"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/passbolt/passbolt_selenium_api.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/passbolt/passbolt_test_data.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/passbolt/cakephp-codesniffer.git",
"no-api": true
}
],
"require": {
"php": ">=7.3",
"ext-json" : "*",
"ext-posix" : "*",
"ext-intl" : "*",
"ext-mbstring" : "*",
"ext-gnupg" : "*",
"cakephp/cakephp": "3.9.5",
"cakephp/migrations": "^2.4.2",
"cakephp/plugin-installer": "^1.3.0",
"mobiledetect/mobiledetectlib": "^2.8.34",
"ramsey/uuid": "^4.1.1",
"singpolyma/openpgp-php": "dev-master#c961eca13df86a4e9af6ef1ebd9da7d3858d75c8",
"donatj/phpuseragentparser": "^1.1.0",
"lorenzo/cakephp-email-queue": "^3.3.1",
"burzum/cakephp-file-storage": "^2.1.0",
"burzum/cakephp-imagine-plugin": "^3.0.0"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "^3.22.4",
"cakephp/bake": "^1.12.0",
"phpunit/phpunit": "^6.5.14",
"passbolt/cakephp-codesniffer": "dev-master",
"passbolt/passbolt_selenium_api": "^2.10.0",
"passbolt/passbolt_test_data": "^2.14.1",
"vierge-noire/cakephp-test-suite-light": "^1.0",
"vierge-noire/cakephp-test-migrator": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "src",
"Passbolt\\AccountSettings\\": "./plugins/Passbolt/AccountSettings/src",
"Passbolt\\RememberMe\\": "./plugins/Passbolt/RememberMe/src",
"Passbolt\\WebInstaller\\": "./plugins/Passbolt/WebInstaller/src",
"Passbolt\\Log\\": "./plugins/Passbolt/Log/src",
"Passbolt\\EmailNotificationSettings\\": "./plugins/Passbolt/EmailNotificationSettings/src",
"Passbolt\\EmailDigest\\": "plugins/Passbolt/EmailDigest/src",
"Passbolt\\Reports\\": "./plugins/Passbolt/Reports/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"Passbolt\\AccountSettings\\Test\\": "./plugins/Passbolt/AccountSettings/tests",
"Passbolt\\WebInstaller\\Test\\": "./plugins/Passbolt/WebInstaller/tests",
"Passbolt\\Log\\Test\\": "./plugins/Passbolt/Log/tests",
"Passbolt\\EmailNotificationSettings\\Test\\": "./plugins/Passbolt/EmailNotificationSettings/tests",
"Passbolt\\EmailDigest\\Test\\": "plugins/Passbolt/EmailDigest/tests",
"Passbolt\\Reports\\Test\\": "./plugins/Passbolt/Reports/tests"
}
},
"scripts": {
"post-install-cmd": [
"App\\Console\\Installer::postInstall"
],
"install-dev": [
"@composer install --dev",
"npm install",
"./node_modules/.bin/grunt appjs-update",
"./node_modules/.bin/grunt styleguide-update"
],
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/passbolt/cakephp-codesniffer/CakePHP --ignore=*.js ./src ./tests ./plugins",
"cs-fix": "phpcbf --colors --standard=vendor/passbolt/cakephp-codesniffer/CakePHP --ignore=*.js ./src ./tests ./plugins",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}