-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.58 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.58 KB
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
{
"name": "kseven/web-cli",
"description": "CLI profissional para gerenciamento de aplicações web em PHP",
"keywords": ["cli", "php", "web", "automation", "deploy", "build", "server"],
"type": "library",
"license": "MIT",
"homepage": "https://kseven.dev.br",
"support": {
"issues": "https://github.com/kseven/web-cli/issues",
"source": "https://github.com/kseven/web-cli",
"docs": "https://kseven.dev.br/docs"
},
"authors": [
{
"name": "K'Seven",
"email": "contato@kseven.dev.br",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"symfony/console": "^6.0",
"symfony/process": "^6.0",
"vlucas/phpdotenv": "^5.5",
"monolog/monolog": "^3.7",
"symfony/finder": "7.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"WebCLI\\": "src/",
"UserCommands\\": "user-commands/"
},
"files": [
"src/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WebCLITest\\": "tests/"
}
},
"bin": ["bin/webcli"],
"scripts": {
"post-update-cmd": [
"@php bin/webcli update-hooks"
],
"post-install-cmd": [
"@php bin/webcli update-hooks"
],
"webcli:update": [
"@php bin/webcli update"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}