-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.71 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"description": "Base Command Line Tool use Silly CLI micro-framework based on Symfony Console",
"name": "bear8421/command-line-tool",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/bear8421/command-line-tool",
"authors": [
{
"name": "Nguyen An Hung",
"email": "dev@nguyenanhung.com",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"nguyenanhung/console": "^1.0"
},
"require-dev": {
"nguyenanhung/framework": "^1.0",
"roave/security-advisories": "dev-latest",
"pheromone/phpcs-security-audit": "^2.0",
"fakerphp/faker": "^1.9"
},
"autoload": {
"psr-4": {
"Bear\\App\\": "app/"
},
"files": [
"helpers/helpers.php"
]
},
"suggest": {
"ext-curl": "Needs for support CURL",
"ext-json": "Needs for support JSON",
"ext-xml": "Needs for support XML",
"ext-simplexml": "Needs for support SimpleXML",
"nguyenanhung/my-debug": "Needs for support Logger",
"nguyenanhung/my-cache": "Needs for support Cache",
"nguyenanhung/database": "Needs for support Database",
"nguyenanhung/requests": "Needs for support Request use CURL",
"nguyenanhung/monitor": "Needs for support Monitoring Service",
"pheromone/phpcs-security-audit": "phpcs-security-audit is a set of PHP_CodeSniffer rules that finds vulnerabilities and weaknesses related to security in PHP coder"
},
"scripts": {
"post-install-cmd": [
"php bear completion --ansi -h"
],
"post-update-cmd": [
"php bear completion --ansi -h"
]
}
}