-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "wp-bond/bond",
"homepage": "https://github.com/wp-bond/bond",
"description": "A utility library for WordPress developers.",
"keywords": [
"wordpress",
"utility",
"library"
],
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "André Felipe",
"homepage": "https://addd.studio"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.0",
"league/container": "^4.1",
"mobiledetect/mobiledetectlib": "^2.8",
"nesbot/carbon": "^2.50",
"psr/simple-cache": "^1.0",
"symfony/polyfill-mbstring": "^1.23",
"symfony/polyfill-php81": "^1.23",
"voku/portable-ascii": "^1.5"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Bond\\": "src/"
}
},
"suggest": {
"google/cloud-translate": "Translate strings with Google Translate.",
"aws/aws-sdk-php": "Translate strings with AWS Translate.",
"symfony/var-dumper": "To use dd() function during development."
}
}