-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 1.04 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
{
"name": "fusion-cms/auto-updater",
"description": "Autoupdater for PHP",
"license": "MIT",
"authors": [
{
"name": "Tim Helfensdörfer",
"email": "[email protected]"
},
{
"name": "Darksider",
"email": "[email protected]"
},
{
"name": "Keramat Jokar",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"ext-json": "*",
"ext-curl": "*",
"ext-zip": "*",
"php": ">=7.2.0",
"desarrolla2/cache": "^3.0",
"monolog/monolog": "^2.1",
"composer/semver": "^3.0",
"psr/log": "1.1.4"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"VisualAppeal\\": "src/"
}
},
"scripts": {
"test": "phpunit -c tests/UnitTests.xml"
},
"config": {
"sort-packages": true
}
}