forked from humbug/phar-updater
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.15 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": "laravel-zero/phar-updater",
"description": "A thing to make PHAR self-updating easy and secure.",
"type": "library",
"keywords": ["phar", "self-update", "update", "humbug"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Padraic Brady",
"email": "[email protected]",
"homepage": "http://blog.astrumfutura.com"
},
{
"name": "Owen Voke",
"email": "[email protected]",
"homepage": "https://voke.dev"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ext-json": "*",
"laravel/pint": "^1.15.1",
"phpstan/phpstan": "^1.10.67",
"phpunit/phpunit": "^9.6.19"
},
"autoload": {
"psr-4": { "Humbug\\SelfUpdate\\": "src/" }
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "phpunit --colors=always",
"test": [
"@test:types",
"@test:unit"
]
},
"conflict": {
"padraic/phar-updater": "*"
},
"config": {
"sort-packages": true
}
}