-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
45 lines (45 loc) · 827 Bytes
/
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
{
"name": "log1x/sage-svg",
"type": "package",
"license": "MIT",
"description": "A simple package for using inline SVGs in Sage 10 projects.",
"authors": [
{
"name": "Brandon Nifong",
"email": "brandon@tendency.me"
}
],
"keywords": [
"wordpress",
"sage",
"svg"
],
"support": {
"issues": "https://github.com/log1x/sage-svg/issues"
},
"autoload": {
"psr-4": {
"Log1x\\SageSvg\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": "^8.1"
},
"require-dev": {
"roots/acorn": "^4.3",
"laravel/pint": "^1.16"
},
"extra": {
"acorn": {
"providers": [
"Log1x\\SageSvg\\SageSvgServiceProvider"
],
"aliases": {
"SageSvg": "Log1x\\SageSvg\\Facades\\SageSvg"
}
}
}
}