-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.6 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
82
83
84
85
86
87
88
89
{
"name": "robertsaupe/php-console-app",
"description": "php based console app template",
"keywords": [
"phar",
"php",
"php8",
"php-cli",
"cli",
"command-line",
"console-application",
"template"
],
"homepage": "https://github.com/robertsaupe/php-console-app",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Robert Saupe",
"email": "[email protected]",
"homepage": "https://robertsaupe.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/robertsaupe/php-console-app/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/robertsaupe"
},
{
"type": "patreon",
"url": "https://patreon.com/robertsaupe"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate?hosted_button_id=SQMRNY8YVPCZQ"
},
{
"type": "amazon",
"url": "https://www.amazon.de/ref=as_li_ss_tl?ie=UTF8&linkCode=ll2&tag=robertsaupe-21&linkId=b79bc86cee906816af515980cb1db95e&language=de_DE"
}
],
"require": {
"php": ">=8.2.0",
"ext-phar": "*",
"phpmailer/phpmailer": "^6",
"robertsaupe/php-json": "^1",
"robertsaupe/php-logger": "^1",
"robertsaupe/php-phar-selfupdate": "^1",
"robertsaupe/php-systeminfo": "^1",
"symfony/console": "^7",
"symfony/filesystem": "^7",
"symfony/finder": "^7",
"symfony/process": "^7",
"symfony/var-dumper": "^7",
"webmozart/assert": "^1"
},
"require-dev": {
"phpstan/phpstan": "^1"
},
"autoload": {
"psr-4": {
"robertsaupe\\ConsoleApp\\": "src/"
}
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "8.2.0"
},
"platform-check": false,
"sort-packages": true
},
"bin": ["bin/console"],
"scripts": {
"stan": "phpstan analyse -vvv",
"console": "@php bin/console",
"console-debug": "@php bin/console-debug",
"debug": "@php bin/console-debug",
"phar": "@php build/console.phar",
"compile": "box compile",
"release-local": "box compile \n php .tools/release.php",
"release": "box compile \n php .tools/release.php \n cd ../gh-pages \n git add -A \n git commit -m \"Bump new phar release\" \n git push origin gh-pages"
}
}