-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.43 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
{
"name": "bear8421/bear-service",
"type": "library",
"description": "Bear Service API Interface",
"keywords": [
"bear",
"helper",
"php"
],
"homepage": "https://github.com/bear8421/bear-service",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": "^7.0 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-openssl": "*",
"nguyenanhung/requests": "^4.0 || ^3.0 || ^2.0 || ^1.0",
"nguyenanhung/slug-helper": "^3.0 || ^2.0 || ^1.0"
},
"require-dev": {
"nguyenanhung/strong-passwords-generator": "^1.0",
"nguyenanhung/basic-firewall": "^2.0",
"bear8421/htpasswd": "^1.0",
"tramtro/make-some-noise": "^1.0",
"kint-php/kint": "^1 || ^2 || ^3 || ^4 || ^5"
},
"autoload": {
"psr-4": {
"Bear8421\\Bear\\Services\\": "src/"
},
"files": [
"helpers/helpers.php",
"helpers/author.php",
"helpers/admin.php",
"helpers/basic_auth.php",
"helpers/check_system_helper.php"
]
},
"bin": [
"bin/make-storage"
]
}