Skip to content

Commit 9de7b29

Browse files
committed
Update README.md + GH Actions for Docs
1 parent a3c8aad commit 9de7b29

File tree

3 files changed

+31
-14
lines changed

3 files changed

+31
-14
lines changed

.github/workflows/phpunit.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ jobs:
1616
strategy:
1717
matrix:
1818
php-version:
19+
- "8.2"
1920
- "8.1"
2021
- "8.0"
2122
- "7.4"
22-
- "7.3"
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- run: composer install
2727
- run: ./vendor/bin/phpunit
2828

2929
Documentation:
30-
runs-on: 'ubuntu-latest'
31-
needs: Build
3230
if: github.ref == 'refs/heads/master'
33-
env:
34-
DOC_GITHUB_TOKEN: '${{ secrets.DOC_TOKEN }}'
35-
steps:
36-
- uses: actions/checkout@v3
37-
- run: curl https://opensource.byjg.com/add-doc.sh | bash /dev/stdin php singleton
31+
needs: Build
32+
uses: byjg/byjg.github.io/.github/workflows/add-doc.yaml@master
33+
with:
34+
folder: php
35+
project: ${{ github.event.repository.name }}
36+
secrets: inherit
37+

README.md

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Singleton Pattern
22

3-
[![Opensource ByJG](https://img.shields.io/badge/opensource-byjg-success.svg)](http://opensource.byjg.com)
4-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/byjg/SingletonPatternPHP/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/byjg/SingletonPatternPHP/?branch=master)
5-
[![Build Status](https://github.com/byjg/SingletonPatternPHP/actions/workflows/phpunit.yml/badge.svg?branch=master)](https://github.com/byjg/SingletonPatternPHP/actions/workflows/phpunit.yml)
3+
[![Build Status](https://github.com/byjg/php-singleton-pattern/actions/workflows/phpunit.yml/badge.svg?branch=master)](https://github.com/byjg/php-singleton-pattern/actions/workflows/phpunit.yml)
4+
[![Opensource ByJG](https://img.shields.io/badge/opensource-byjg-success.svg)](http://opensource.byjg.com)
5+
[![GitHub source](https://img.shields.io/badge/Github-source-informational?logo=github)](https://github.com/byjg/php-singleton-pattern/)
6+
[![GitHub license](https://img.shields.io/github/license/byjg/php-singleton-pattern.svg)](https://opensource.byjg.com/opensource/licensing.html)
7+
[![GitHub release](https://img.shields.io/github/release/byjg/php-singleton-pattern.svg)](https://github.com/byjg/php-singleton-pattern/releases/)
8+
69

710
A lightweight PHP implementation of the Design Pattern Singleton using trait.
811
Just one class and no dependencies.
@@ -33,13 +36,25 @@ $example = Example::getInstance();
3336
## Install
3437

3538
```
36-
composer require "byjg/singleton-pattern=4.9.*"
39+
composer require "byjg/singleton-pattern"
40+
```
41+
42+
## Run Tests
43+
44+
```
45+
vendor/bin/phpunit
3746
```
3847

3948
## References
4049

4150
* https://en.wikipedia.org/wiki/Singleton_pattern
4251

52+
## Dependencies
53+
54+
```mermaid
55+
flowchart TD
56+
byjg/singleton-pattern
57+
```
4358

4459
----
4560
[Open source ByJG](http://opensource.byjg.com)

composer.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"ByJG\\DesignPattern\\": "src/"
77
}
88
},
9-
"require": {},
9+
"require": {
10+
"php": ">=7.4"
11+
},
1012
"require-dev": {
1113
"phpunit/phpunit": "5.7.*|7.4.*|^9.5"
1214
},

0 commit comments

Comments
 (0)