Skip to content

Commit 0de1e4b

Browse files
authored
Merge pull request #3 from TomHAnderson/hotfix/service-provider
Added badges and ServiceProvider to composer.json
2 parents 32ef2b4 + 0ece4b3 commit 0de1e4b

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Laravel Doctrine Data Fixtures
22

3+
[![Build Status](https://github.com/API-Skeletons/laravel-doctrine-data-fixtures/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/API-Skeletons/laravel-doctrine-data-fixtures/actions/workflows/continuous-integration.yml?query=branch%3Amain)
4+
[![Code Coverage](https://codecov.io/gh/API-Skeletons/laravel-doctrine-data-fixtures/branch/main/graphs/badge.svg)](https://codecov.io/gh/API-Skeletons/laravel-doctrine-data-fixtures/branch/main)
5+
[![PHP Version](https://img.shields.io/badge/PHP-8.0%2b-blue)](https://img.shields.io/badge/PHP-8.0%2b-blue)
6+
[![Laravel Version](https://img.shields.io/badge/Laravel-8.x%2b-red)](https://img.shields.io/badge/Laravel-5.7%20to%208.x-red)
7+
[![Total Downloads](https://poser.pugx.org/api-skeletons/laravel-doctrine-data-fixtures/downloads)](//packagist.org/packages/api-skeletons/laravel-doctrine-data-fixtures)
8+
[![License](https://poser.pugx.org/api-skeletons/laravel-doctrine-data-fixtures/license)](//packagist.org/packages/api-skeletons/laravel-doctrine-data-fixtures)
9+
10+
311
Laravel has built-in support for 'seed' data. In seed data, the classes
412
are not namespaced and many developers treat seed data as a one-time
513
import. Seed data often uses auto-increment primary keys. Perhaps

composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,12 @@
3131
"name": "Tom H Anderson",
3232
"email": "[email protected]"
3333
}
34-
]
34+
],
35+
"extra": {
36+
"laravel": {
37+
"providers": [
38+
"ApiSkeletons\\Laravel\\Doctrine\\DataFixtures\\ServiceProvider"
39+
]
40+
}
41+
}
3542
}

0 commit comments

Comments
 (0)