-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 973 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
{
"name": "eightshift/eightshift-boilerplate-plugin",
"description": "This repository contains all the tools you need to start building a modern WordPress project.",
"private": true,
"keywords": [
"plugin",
"eightshift",
"Gutenberg",
"WordPress"
],
"homepage": "https://eightshift.com/",
"license": "MIT",
"authors": [
{
"name": "Eightshift team",
"email": "[email protected]",
"homepage": "https://eightshift.com/",
"role": "Developer / IT Manager"
}
],
"support": {
"issues": "https://github.com/infinum/eightshift-boilerplate-plugin/issues",
"source": "https://github.com/infinum/eightshift-boilerplate-plugin"
},
"require-dev": {
"wp-cli/wp-cli": "^2.9"
},
"require": {
"php": ">=8.2"
},
"autoload": {
"psr-4": {
"EightshiftBoilerplatePlugin\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000
}
}