-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1003 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
42
43
44
45
46
47
{
"name": "weble/joomla-test-bench",
"description": "Orchestral Test Bench for Joomla",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniele Rosario",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Weble\\JoomlaTestBench\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Weble\\JoomlaTestBench\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"fakerphp/faker": "^v1.17",
"joomla/http": "2.0.x-dev",
"larapack/dd": "dev-master",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "dev-stable",
"phpunit/phpunit": "^8.4 || ^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
},
"suggest": {
"joomla/joomla-cms": "Required for testing (^3.9 || ^4.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/joomla/joomla-cms"
}
]
}