-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 941 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
{
"name": "afragen/git-updater-gist",
"description": "Add GitHub Gist hosted repositories to Git Updater.",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Andy Fragen",
"email": "[email protected]",
"homepage": "https://thefragens.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/afragen/git-updater-gist/issues",
"source": "https://github.com/afragen/git-updater-gist"
},
"prefer-stable": true,
"require": {
"php": ">=7.2"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Fragen\\Git_Updater\\Gist\\": "src/",
"Fragen\\Git_Updater\\API\\": "src/Gist/"
}
},
"scripts": {
"wpcs": [
"vendor/bin/phpcbf .; vendor/bin/phpcs ."
]
}
}