forked from passbolt/passbolt_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 3.53 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
{
"name": "passbolt/passbolt_api",
"description": "Open source password manager for teams",
"type": "application",
"keywords": [
"password",
"passbolt"
],
"config": {
"optimize-autoloader": true
},
"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
}
],
"require": {
"php": ">=7.0",
"ext-json" : "*",
"ext-posix" : "*",
"cakephp/cakephp": "^3.8.0",
"cakephp/migrations": "^2.1",
"cakephp/plugin-installer": "^1.1",
"mobiledetect/mobiledetectlib": "2.*",
"ramsey/uuid": "^3.7",
"singpolyma/openpgp-php": "^0.3.0",
"thadafinser/user-agent-parser": "^2.0",
"donatj/phpuseragentparser": "^0.7.0",
"lorenzo/cakephp-email-queue": "^3.3.1",
"burzum/cakephp-file-storage": "^2.1.0",
"burzum/cakephp-imagine-plugin": "3.x-dev"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "~3.2",
"cakephp/bake": "~1.1",
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/cakephp-codesniffer": "^3.0",
"passbolt/passbolt_selenium_api": "^2.10.0",
"passbolt/passbolt_test_data": "^2.10.2"
},
"autoload": {
"psr-4": {
"App\\": "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"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"Passbolt\\WebInstaller\\Test\\": "./plugins/Passbolt/WebInstaller/tests",
"Passbolt\\Log\\Test\\": "./plugins/Passbolt/Log/tests",
"Passbolt\\EmailNotificationSettings\\Test\\": "./plugins/Passbolt/EmailNotificationSettings/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",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP --ignore=*.js ./src ./tests ./plugins",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP --ignore=*.js ./src ./tests ./plugins",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}