Skip to content

Commit 3b9823b

Browse files
author
Septiyan Nariyanto
committed
docs: add repository badges and composer metadata
1 parent fe735b4 commit 3b9823b

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Safe Staging Guard
22

3+
[![CI](https://github.com/nariyanto/wp-safe-staging-guard/actions/workflows/ci.yml/badge.svg)](https://github.com/nariyanto/wp-safe-staging-guard/actions/workflows/ci.yml)
4+
[![Latest Release](https://img.shields.io/github/v/release/nariyanto/wp-safe-staging-guard?label=release)](https://github.com/nariyanto/wp-safe-staging-guard/releases)
5+
[![Packagist Version](https://img.shields.io/packagist/v/nariyanto/wp-safe-staging-guard?label=packagist)](https://packagist.org/packages/nariyanto/wp-safe-staging-guard)
6+
[![PHP](https://img.shields.io/badge/PHP-%3E%3D%207.4-777bb4.svg)](https://www.php.net/)
7+
[![WordPress](https://img.shields.io/badge/WordPress-%3E%3D%206.0-21759b.svg)](https://wordpress.org/)
8+
[![License](https://img.shields.io/badge/license-GPL--2.0--or--later-blue.svg)](https://www.gnu.org/licenses/gpl-2.0.html)
9+
310
Prevent staging-site accidents with visible environment labels, noindex controls, and safe email handling.
411

512
## Why

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "nariyanto/wp-safe-staging-guard",
3+
"description": "Prevent WordPress staging-site accidents with visible environment labels, noindex controls, and safe email handling.",
4+
"type": "wordpress-plugin",
5+
"license": "GPL-2.0-or-later",
6+
"homepage": "https://github.com/nariyanto/wp-safe-staging-guard",
7+
"support": {
8+
"issues": "https://github.com/nariyanto/wp-safe-staging-guard/issues",
9+
"source": "https://github.com/nariyanto/wp-safe-staging-guard"
10+
},
11+
"authors": [
12+
{
13+
"name": "Septiyan Nariyanto",
14+
"homepage": "https://nariyanto.id"
15+
}
16+
],
17+
"keywords": [
18+
"wordpress",
19+
"wordpress-plugin",
20+
"staging",
21+
"noindex",
22+
"email-safety",
23+
"development"
24+
],
25+
"require": {
26+
"php": ">=7.4",
27+
"composer/installers": "^2.2"
28+
},
29+
"autoload": {
30+
"psr-4": {
31+
"Nariyanto\\SafeStagingGuard\\": "src/"
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)