-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 632 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 632 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
{
"name": "hughbris/pushy",
"type": "grav-plugin",
"description": "Push with Git to publish changes to your production environment",
"keywords": ["plugin"],
"homepage": "https://github.com/hughbris/grav-plugin-pushy",
"license": "MIT",
"authors": [
{
"name": "Hugh Barnes",
"email": "dev@hubns.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.3.6 || ^8.0",
"czproject/git-php": "^4.0.5"
},
"autoload": {
"psr-4": {
"Grav\\Plugin\\Pushy\\": "classes/"
},
"classmap": ["pushy.php"]
},
"config": {
"platform": {
"php": "7.3.6"
}
}
}