-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "passbolt/passbolt-test-data",
"description": "Passbolt data test plugin.",
"type": "cakephp-plugin",
"version": "4.8.0",
"keywords": [
"password",
"passbolt"
],
"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": {
"ext-json" : "*",
"cakephp/cakephp": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3"
},
"autoload": {
"psr-4": {
"PassboltTestData\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PassboltTestData\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}