Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Commit 9144207

Browse files
Merge branch 'release/2.0.1'
2 parents 1338a60 + 1e562c7 commit 9144207

File tree

3 files changed

+37
-22
lines changed

3 files changed

+37
-22
lines changed

.travis.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
language: php
22

33
php:
4-
- "7.2"
5-
- "7.3"
6-
- 7.4snapshot
4+
- "7.2"
5+
- "7.3"
6+
- 7.4snapshot
77

88
cache:
99
directories:
10-
- $HOME/.composer/cache
10+
- $HOME/.composer/cache
1111

1212
env:
1313
matrix:
14-
- COMPOSER_FLAGS="--prefer-lowest"
15-
- COMPOSER_FLAGS="--prefer-stable"
14+
- COMPOSER_FLAGS="--prefer-lowest"
15+
- COMPOSER_FLAGS="--prefer-stable"
1616

1717
matrix:
1818
allow_failures:
19-
- php: 7.4snapshot
19+
- php: 7.4snapshot
2020
fast_finish: true
2121

2222
before_install:
23-
- composer validate --strict
24-
- travis_retry composer self-update
23+
- composer validate --strict
24+
- travis_retry composer self-update
2525

2626
install:
27-
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
27+
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
2828

2929
script:
30-
- vendor/bin/phpunit
30+
- vendor/bin/phpunit
3131

3232
branches:
3333
only:
34-
- master
35-
- develop
34+
- master
35+
- develop
3636

3737
notifications:
3838
email:

README.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# An extensive set of PHP helper functions and classes
22

3-
<a href="https://packagist.org/packages/sebastiaanluca/php-helpers"><img src="https://poser.pugx.org/sebastiaanluca/php-helpers/version" alt="Latest stable release"></img></a>
4-
<a href="LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-brightgreen.svg" alt="Software license"></img></a>
5-
<a href="https://travis-ci.org/sebastiaanluca/php-helpers"><img src="https://img.shields.io/travis/sebastiaanluca/php-helpers/master.svg" alt="Build status"></img></a>
6-
<a href="https://packagist.org/packages/sebastiaanluca/php-helpers"><img src="https://img.shields.io/packagist/dt/sebastiaanluca/php-helpers.svg" alt="Total downloads"></img></a>
3+
[![Latest stable release][version-badge]][link-packagist]
4+
[![Software license][license-badge]](LICENSE.md)
5+
[![Build status][travis-badge]][link-travis]
6+
[![Total downloads][downloads-badge]][link-packagist]
7+
[![Total stars][stars-badge]][link-github]
78

8-
<a href="https://blog.sebastiaanluca.com"><img src="https://img.shields.io/badge/link-blog-lightgrey.svg" alt="Read my blog"></img></a>
9-
<a href="https://packagist.org/packages/sebastiaanluca"><img src="https://img.shields.io/badge/link-other_packages-lightgrey.svg" alt="View my other packages and projects"></img></a>
10-
<a href="https://twitter.com/sebastiaanluca"><img src="https://img.shields.io/twitter/follow/sebastiaanluca.svg?style=social" alt="Follow @sebastiaanluca on Twitter"></img></a>
11-
<a href="https://twitter.com/intent/tweet?text=Check%20out%20this%20extensive%20set%20of%20generic%20PHP%20helper%20functions%20and%20classes!%20Via%20@sebastiaanluca%20https://github.com/sebastiaanluca/php-helpers"><img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social" alt="Share this package on Twitter"></img></a>
9+
[![Read my blog][blog-link-badge]][link-blog]
10+
[![View my other packages and projects][packages-link-badge]][link-packages]
11+
[![Follow @sebastiaanluca on Twitter][twitter-profile-badge]][link-twitter]
12+
[![Share this package on Twitter][twitter-share-badge]][link-twitter-share]
1213

1314
## Table of contents
1415

@@ -578,12 +579,26 @@ My name is Sebastiaan and I'm a freelance back-end developer specializing in bui
578579

579580
Have a project that could use some guidance? Send me an e-mail at [[email protected]][link-author-email]!
580581

582+
[version-badge]: https://img.shields.io/packagist/v/sebastiaanluca/php-helpers.svg?label=stable
583+
[license-badge]: https://img.shields.io/badge/license-MIT-informational.svg
584+
[travis-badge]: https://img.shields.io/travis/sebastiaanluca/php-helpers/master.svg
585+
[downloads-badge]: https://img.shields.io/packagist/dt/sebastiaanluca/php-helpers.svg?color=brightgreen
586+
[stars-badge]: https://img.shields.io/github/stars/sebastiaanluca/php-helpers.svg?color=brightgreen
587+
588+
[blog-link-badge]: https://img.shields.io/badge/link-blog-lightgrey.svg
589+
[packages-link-badge]: https://img.shields.io/badge/link-other_packages-lightgrey.svg
590+
[twitter-profile-badge]: https://img.shields.io/twitter/follow/sebastiaanluca.svg?style=social
591+
[twitter-share-badge]: https://img.shields.io/twitter/url/http/shields.io.svg?style=social
592+
593+
[link-github]: https://github.com/sebastiaanluca/php-helpers
581594
[link-packagist]: https://packagist.org/packages/sebastiaanluca/php-helpers
582595
[link-travis]: https://travis-ci.org/sebastiaanluca/php-helpers
596+
[link-twitter-share]: https://twitter.com/intent/tweet?text=Check%20out%20this%20extensive%20set%20of%20generic%20PHP%20helper%20functions%20and%20classes!%20Via%20@sebastiaanluca%20https://github.com/sebastiaanluca/php-helpers
583597
[link-contributors]: ../../contributors
584598

585599
[link-portfolio]: https://www.sebastiaanluca.com
586600
[link-blog]: https://blog.sebastiaanluca.com
587601
[link-packages]: https://packagist.org/packages/sebastiaanluca
602+
[link-twitter]: https://twitter.com/sebastiaanluca
588603
[link-github-profile]: https://github.com/sebastiaanluca
589604
[link-author-email]: mailto:[email protected]

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"require-dev": {
2929
"kint-php/kint": "^3.1",
3030
"nesbot/carbon": "^1.22|^2.0",
31-
"phpunit/phpunit": "^8.0"
31+
"phpunit/phpunit": "^8.2"
3232
},
3333
"suggest": {
3434
"kint-php/kint": "A powerful and modern PHP debugging tool. Required for the debug helpers.",

0 commit comments

Comments
 (0)