Skip to content

Commit a3c8aad

Browse files
authored
Merge pull request #3 from byjg/4.9.0
Release 4.9.0
2 parents 9ebbfb8 + e1ff238 commit a3c8aad

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/phpunit.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
pull_request:
99
branches:
1010
- master
11-
schedule:
12-
- cron: "0 8 * * 1"
1311

1412
jobs:
1513
Build:
@@ -22,10 +20,6 @@ jobs:
2220
- "8.0"
2321
- "7.4"
2422
- "7.3"
25-
- "7.2"
26-
- "7.1"
27-
# - "7.0"
28-
# - "5.6"
2923

3024
steps:
3125
- uses: actions/checkout@v3
@@ -40,4 +34,4 @@ jobs:
4034
DOC_GITHUB_TOKEN: '${{ secrets.DOC_TOKEN }}'
4135
steps:
4236
- uses: actions/checkout@v3
43-
- run: curl https://opensource.byjg.com/add-doc.sh | bash /dev/stdin php singleton
37+
- run: curl https://opensource.byjg.com/add-doc.sh | bash /dev/stdin php singleton

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class Example
2424
**REMEMBER:** Your class cannot have a public constructor. If it is necessary, use a private or protected constructor instead.
2525
Singleton classes does not have arguments in the constructor;
2626

27-
2827
## Use your class
2928

3029
```php
@@ -34,7 +33,7 @@ $example = Example::getInstance();
3433
## Install
3534

3635
```
37-
composer require "byjg/singleton-pattern=~1.0"
36+
composer require "byjg/singleton-pattern=4.9.*"
3837
```
3938

4039
## References

phpunit.xml.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ and open the template in the editor.
2626
<directory>./src</directory>
2727
</whitelist>
2828
</filter>
29-
29+
3030
<testsuites>
3131
<testsuite name="Test Suite">
3232
<directory>./tests/</directory>
3333
</testsuite>
3434
</testsuites>
35-
35+
3636
</phpunit>

0 commit comments

Comments
 (0)