-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 872 Bytes
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 872 Bytes
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
{
"name": "visualappeal/php-auto-update",
"description": "Autoupdater for PHP",
"license": "MIT",
"authors": [
{
"name": "Tim Helfensdörfer",
"email": "tim@visualappeal.de"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-json": "*",
"ext-zip": "*",
"composer/semver": "^3.0",
"desarrolla2/cache": "^3.0",
"monolog/monolog": "^2.1",
"psr/log": "^1.0|^2.0|^3.0"
},
"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
}
}