-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (40 loc) · 956 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
{
"name": "adampatterson/axe-helpers",
"description": "Theme Helpers for Axe",
"keywords": [
"WordPress",
"helpers"
],
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Adam Patterson",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/adampatterson/Axe-Helpers/issues",
"source": "https://github.com/adampatterson/Axe-Helpers"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"require": {
"php": "^8.1, ^8.2",
"nesbot/carbon": "^2.72.2",
"tightenco/collect": "^v9.52.7",
"laravel/helpers": "^v1.7.0",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"files": [
"src/Helpers.php"
]
},
"scripts": {
"test": "phpunit"
}
}