-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 926 Bytes
/
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
{
"name": "passbolt/passbolt-selenium-api",
"description": "Passbolt selenium testing helper endpoints",
"type": "cakephp-plugin",
"version": "4.5.0",
"keywords": [
"password",
"passbolt",
"selenium"
],
"homepage": "https://www.passbolt.com",
"license": "AGPL-3.0",
"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"
},
"require": {
"cakephp/cakephp": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3"
},
"autoload": {
"psr-4": {
"PassboltSeleniumApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PassboltSeleniumApi\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}