File tree 3 files changed +31
-14
lines changed
3 files changed +31
-14
lines changed Original file line number Diff line number Diff line change @@ -16,22 +16,22 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
php-version :
19
+ - " 8.2"
19
20
- " 8.1"
20
21
- " 8.0"
21
22
- " 7.4"
22
- - " 7.3"
23
23
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
- run : composer install
27
27
- run : ./vendor/bin/phpunit
28
28
29
29
Documentation :
30
- runs-on : ' ubuntu-latest'
31
- needs : Build
32
30
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
+
Original file line number Diff line number Diff line change 1
1
# Singleton Pattern
2
2
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
+
6
9
7
10
A lightweight PHP implementation of the Design Pattern Singleton using trait.
8
11
Just one class and no dependencies.
@@ -33,13 +36,25 @@ $example = Example::getInstance();
33
36
## Install
34
37
35
38
```
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
37
46
```
38
47
39
48
## References
40
49
41
50
* https://en.wikipedia.org/wiki/Singleton_pattern
42
51
52
+ ## Dependencies
53
+
54
+ ``` mermaid
55
+ flowchart TD
56
+ byjg/singleton-pattern
57
+ ```
43
58
44
59
----
45
60
[ Open source ByJG] ( http://opensource.byjg.com )
Original file line number Diff line number Diff line change 6
6
"ByJG\\ DesignPattern\\ " : " src/"
7
7
}
8
8
},
9
- "require" : {},
9
+ "require" : {
10
+ "php" : " >=7.4"
11
+ },
10
12
"require-dev" : {
11
13
"phpunit/phpunit" : " 5.7.*|7.4.*|^9.5"
12
14
},
You can’t perform that action at this time.
0 commit comments