File tree Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Original file line number Diff line number Diff line change 7
7
- image : circleci/php:8.0-fpm-node-browsers
8
8
steps :
9
9
- checkout
10
- - run :
11
- name : Install dependencies
12
- command : |
13
- apt-get update
14
- apt-get install -y python3 python3-pip
15
- pip3 install coverage coveralls
16
10
- run : sudo composer self-update --no-progress --no-interaction
17
11
- run : composer install --no-progress --no-interaction --prefer-dist
18
12
- run : ./vendor/bin/phpunit
19
- - run :
20
- name : Generate code coverage report
21
- command : coverage run -m unittest discover
22
- - run :
23
- name : Upload code coverage report to Coveralls
24
- command : coveralls
25
- environment :
26
- COVERALLS_REPO_TOKEN : oTgNlNs5fUmP2vsiEDuCET4o1RCyC7iBe
13
+
27
14
workflows :
28
15
version : 2
29
16
test :
Original file line number Diff line number Diff line change 10
10
[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/san-kumar/laravel-crud.svg?style=flat-square )] ( https://img.shields.io/packagist/dt/san-kumar/laravel-crud.svg?style=flat-square )
11
11
[ ![ Coverage Status] ( https://coveralls.io/repos/github/san-kumar/laravel-crud/badge.svg )] ( https://coveralls.io/github/san-kumar/laravel-crud )
12
12
13
+
14
+ Please see the [ ** full documentation here** ] ( https://san-kumar.github.io/laravel-crud/ ) .
15
+
16
+
13
17
This package adds a ** crud: generate ** command to Artisan in
14
18
your Laravel project. With this command you can generate a
15
19
CRUD (Create, Read, Update, Delete) for any table instantly!
Original file line number Diff line number Diff line change 13
13
14
14
if (!empty ($ md )) {
15
15
$ content = implode ("\n" , $ md );
16
- $ content = preg_replace ("/## Introduction \n/ " , "## Introduction \n\n" . file_get_contents (__DIR__ . '/badges.md ' ), $ content );
16
+ $ docs = "Please see the [**full documentation here**](https://san-kumar.github.io/laravel-crud/). \n\n" ;
17
+ $ content = preg_replace ("/## Introduction \n/ " , "## Introduction \n\n" . file_get_contents (__DIR__ . '/badges.md ' ) . "\n\n$ docs " , $ content );
17
18
$ content = preg_replacE ("/:::warning(.*?):::/ms " , '$1 ' , $ content );
18
19
echo $ content ;
19
20
file_put_contents (__DIR__ . '/../README.md ' , $ content );
You can’t perform that action at this time.
0 commit comments