-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
58 lines (57 loc) · 1.21 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
{
"name": "joomla-projects/jorobo",
"description": "Tools and Tasks based on Robo.li for Joomla Extension Development and Releases",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Yves Hoppe",
"email": "[email protected]"
},
{
"name": "Niels Nübel",
"email": "[email protected]"
},
{
"name": "Niels Braczek",
"email": "[email protected]"
},
{
"name": "Hannes Papenberg",
"email": "[email protected]"
},
{
"name": "Harald Leithner",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "8.2"
}
},
"autoload": {
"psr-4": {
"Joomla\\Jorobo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Jorobo\\": "src",
"Robo\\": "tests/src"
}
},
"require" : {
"php": "~8.2",
"ext-simplexml": "*",
"consolidation/robo": "^5.1.0",
"joomla/github": "~2|~3"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.10.3",
"friendsofphp/php-cs-fixer": "^3.9.5",
"phan/phan": "^5.4.5",
"phpunit/phpunit": "^11.4.3",
"phpstan/phpstan": "^1.12.8",
"phpstan/phpstan-deprecation-rules": "^1.2.1"
}
}