This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.49 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
{
"name": "albinvar/anonfiles-cli",
"description": "The Anonfiles CLI tool",
"keywords": ["anonfiles", "anonfiles-cli", "laravel zero", "console", "cli"],
"homepage": "https://github.com/albinvar/anonfiles-cli",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/albinvar/anonfiles-cli/issues",
"source": "https://github.com/albinvar/anonfiles-cli"
},
"authors": [
{
"name": "Albin Varghese",
"email": "me@albinvar.in"
}
],
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^6.5.5",
"illuminate/http": "^8.0",
"laminas/laminas-text": "^2.8",
"laravel-zero/phar-updater": "^1.0.6"
},
"require-dev": {
"laravel-zero/framework": "^8.8",
"mockery/mockery": "^1.4.3",
"nunomaduro/phpinsights": "^2.0",
"pestphp/pest": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Anonfiles\\": "app/Anonfiles/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/anonfiles"]
}