-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
55 lines (55 loc) · 1.01 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
{
"name": "log1x/sage-directives",
"type": "package",
"license": "MIT",
"description": "A set of Blade directives for use with Roots Sage.",
"homepage": "https://github.com/log1x/sage-directives",
"authors": [
{
"name": "Brandon Nifong",
"email": "brandon@tendency.me"
}
],
"keywords": [
"roots",
"sage",
"acorn",
"wordpress",
"blade-directives",
"blade",
"directives"
],
"support": {
"issues": "https://github.com/log1x/sage-directives/issues"
},
"autoload": {
"psr-4": {
"Log1x\\SageDirectives\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"roots/acorn": "*",
"pestphp/pest": "^2.9",
"laravel/pint": "^1.10"
},
"extra": {
"acorn": {
"providers": [
"Log1x\\SageDirectives\\SageDirectivesServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}