forked from passbolt/passbolt_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
126 lines (126 loc) · 4.82 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
119
120
121
122
123
124
125
126
{
"name": "passbolt/passbolt_api",
"description": "Open source password manager for teams",
"homepage": "https://www.passbolt.com",
"type": "application",
"license": "AGPL-3.0-or-later",
"keywords": [
"password",
"passbolt"
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.3"
}
},
"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",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/passbolt/passbolt-test-data",
"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": "4.2.4",
"cakephp/migrations": "^3.0.0",
"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": "^4.0.0",
"imagine/imagine": "^1.2.4",
"league/flysystem": "^2.0.3",
"cakephp/authentication": "^2.6.0",
"bcrowe/cakephp-api-pagination": "^2.1.0"
},
"require-dev": {
"phpstan/phpstan": "0.12.81",
"psy/psysh": "@stable",
"cakephp/debug_kit": "^4.4.1",
"cakephp/bake": "^2.3.0",
"phpunit/phpunit": "^9.5.2",
"passbolt/cakephp-codesniffer": "dev-master",
"passbolt/passbolt-selenium-api": "^3.1.1",
"passbolt/passbolt-test-data": "^3.2.0",
"vierge-noire/cakephp-fixture-factories": "^2.2",
"cakephp/localized": "4.0.0-beta"
},
"autoload": {
"psr-4": {
"App\\": "src",
"Passbolt\\AccountSettings\\": "./plugins/Passbolt/AccountSettings/src",
"Passbolt\\Locale\\": "./plugins/Passbolt/Locale/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\\Locale\\Test\\": "./plugins/Passbolt/Locale/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",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --ignore=*.js,*/templates/* ./src ./tests ./plugins",
"cs-fix": "phpcbf --colors --ignore=*.js,*/templates/* ./src ./tests ./plugins",
"install-dev": [
"@composer install --dev",
"npm install",
"./node_modules/.bin/grunt appjs-update",
"./node_modules/.bin/grunt styleguide-update"
],
"stan": "phpstan analyse --memory-limit=-1",
"test": "phpunit --colors=always",
"externalize-locale-strings": [
"./bin/cake i18n extract --app ./ --paths src,plugins,templates --output resources/locales/en_UK --exclude /tests,/vendors,/src/Command --overwrite --extract-core no --no-location --merge yes",
"find resources/locales/en_UK -name '*.pot' -exec sh -c 'mv \"$1\" \"${1%.pot}.po\"' _ {} \\;"
]
},
"prefer-stable": true
}