-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.09 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "edalzell/variable",
"description": "Set variables in Antlers",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"laravel/framework": "^7.30.3 || ^8.24",
"statamic/cms": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^3.0 || ^4.1 || ^5.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0"
},
"authors": [
{
"name": "Erin Dalzell",
"email": "erin@silentz.co",
"homepage": "https://silentz.co",
"role": "Founder"
}
],
"autoload": {
"psr-4": {
"Edalzell\\Variable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Edalzell\\Blade\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Variable",
"description": "Variable addon"
},
"laravel": {
"providers": [
"Edalzell\\Variable\\ServiceProvider"
]
}
}
}