-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 752 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 752 Bytes
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
{
"name": "jeffreyvanrossum/wp-settings",
"description": "Handy wrapper to make creating WordPress settings pages a breeze.",
"license": "MIT",
"authors": [
{
"name": "Jeffrey van Rossum",
"email": "jeffrey@vanrossum.dev"
}
],
"require": {
"php": "^7.4|^8.0",
"adbario/php-dot-notation": "^3.3"
},
"require-dev": {
"phpcompatibility/php-compatibility": "*",
"laravel/pint": "^1.4",
"spatie/ray": "^1.36"
},
"autoload": {
"psr-4": {
"Jeffreyvr\\WPSettings\\": "src"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"format": "./vendor/bin/pint ./src/"
}
}