-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
composer.json
81 lines (81 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "codedge/laravel-selfupdater",
"description": "Providing an auto-updating functionality for your self-hosted Laravel application.",
"license": "MIT",
"keywords": [
"self-update",
"self update",
"auto-update",
"auto update",
"update",
"laravel",
"laravel application",
"self-hosted laravel application"
],
"authors": [
{
"name": "Holger Lösken",
"email": "[email protected]",
"homepage": "https://codedge.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/codedge/laravel-selfupdater/issues",
"source": "https://github.com/codedge/laravel-selfupdater"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.5.0",
"illuminate/support": "^10 || ^11.0",
"league/uri": "~6.7 || ~6.8 || ^7.4",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-phpunit": "^1.2"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.1 || ^9.0",
"phpunit/phpunit": "^9.5.26 || ^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Codedge\\Updater\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Codedge\\Updater\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"Updater": "Codedge\\Updater\\UpdaterFacade"
},
"providers": [
"Codedge\\Updater\\UpdaterServiceProvider"
]
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan --memory-limit=1G",
"test": "./vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html=build/coverage-html"
}
}