Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix documentation badges #254

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Adding state behaviour to Eloquent models

[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/laravel-model-states.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-model-states)
![Test](https://github.com/spatie/laravel-model-states/workflows/Test/badge.svg)
![Check & fix styling](https://github.com/spatie/laravel-model-states/workflows/Check%20&%20fix%20styling/badge.svg)
[![Run tests](https://github.com/spatie/laravel-model-states/actions/workflows/run-tests.yml/badge.svg)](https://github.com/spatie/laravel-model-states/actions/workflows/run-tests.yml)
[![Check & fix styling](https://github.com/spatie/laravel-model-states/actions/workflows/php-cs-fixer.yml/badge.svg)](https://github.com/spatie/laravel-model-states/actions/workflows/php-cs-fixer.yml)
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-model-states.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-model-states)

This package adds state support to models. It combines concepts from the [state pattern](https://en.wikipedia.org/wiki/State_pattern) and [state machines](https://www.youtube.com/watch?v=N12L5D78MAA).
Expand Down
4 changes: 2 additions & 2 deletions docs/01-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ There's a lot more to tell about how this package can be used. So let's dive in.

<section class="article_badges">
<a href="https://github.com/spatie/laravel-model-states/releases"><img src="https://img.shields.io/github/release/spatie/laravel-model-states.svg?style=flat-square" alt="Latest Version"></a>
<a href="https://github.com/spatie/laravel-model-states/blob/master/LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square" alt="Software License"></a>
<a href="https://github.com/spatie/laravel-model-states/actions?query=workflow%3Arun-tests+branch%3Amaster"><img src="https://img.shields.io/github/workflow/status/spatie/laravel-model-states/run-tests?label=tests" alt="Build Status"></a>
<a href="https://github.com/spatie/laravel-model-states/blob/main/LICENSE.md"><img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square" alt="Software License"></a>
<a href="https://github.com/spatie/laravel-model-states/actions?query=workflow%3Arun-tests+branch%3Amain"><img src="https://img.shields.io/github/actions/workflow/status/spatie/laravel-model-states/run-tests.yml?label=tests&branch=main&style=flat-square" alt="Build Status"></a>
<a href="https://scrutinizer-ci.com/g/spatie/laravel-model-states"><img src="https://img.shields.io/scrutinizer/g/spatie/laravel-model-states.svg?style=flat-square" alt="Quality Score"></a>
<a href="https://packagist.org/packages/spatie/laravel-model-states"><img src="https://img.shields.io/packagist/dt/spatie/laravel-model-states.svg?style=flat-square" alt="Total Downloads"></a>
</section>