Skip to content

Commit 1a50c01

Browse files
committed
wip
1 parent a11a094 commit 1a50c01

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- name: Composer Dependencies
1414
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
1515
- name: Lint
16-
run: php7.3 vendor/bin/phpstan analyse
16+
run: composer lint
1717
- name: Unit Tests
18-
run: php7.3 vendor/bin/phpunit
18+
run: composer test
1919
#- name: NPM dependencies
2020
# run: npm install
2121
#- name: Mix Compile

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# Simple CSV for Laravel
1+
# Laravel Simple CSV
22

33
![](https://github.com/bayareawebpro/simple-csv/workflows/ci/badge.svg)
44
![](https://img.shields.io/badge/License-MIT-success.svg)
55
![](https://img.shields.io/badge/Version-2.0-blue.svg)
66

7+
https://packagist.org/packages/bayareawebpro/laravel-simple-csv
8+
9+
---
10+
711
## Features
812
- Import to LazyCollection.
913
- Export from Collection, LazyCollection, Iterable, Generator, Array.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
}
2929
},
3030
"scripts": {
31-
"test": "vendor/bin/phpunit"
31+
"test": "vendor/bin/phpunit",
32+
"lint": "vendor/bin/phpstan analyse"
3233
},
3334
"extra": {
3435
"laravel": {

0 commit comments

Comments
 (0)