Skip to content

Commit cee073a

Browse files
committed
chore: github actions added + readme update
# Conflicts: # README.md
1 parent 0eb461d commit cee073a

File tree

3 files changed

+65
-17
lines changed

3 files changed

+65
-17
lines changed

.github/workflows/run-tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Run tests
2+
3+
on: push
4+
5+
jobs:
6+
php-tests:
7+
runs-on: ubuntu-latest
8+
9+
name: Run Package Tests
10+
11+
steps:
12+
- name: Checkout Code
13+
uses: actions/checkout@v2
14+
15+
- name: Cache dependencies
16+
uses: actions/cache@v2
17+
with:
18+
path: ~/.composer/cache/files
19+
key: dependencies-composer-${{ hashFiles('composer.json') }}
20+
21+
- name: Setup PHP
22+
uses: shivammathur/setup-php@v1
23+
with:
24+
php-version: 7.2.5
25+
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
26+
coverage: none
27+
28+
- name: Install Composer dependencies
29+
run: composer install --prefer-dist --no-interaction --no-suggest
30+
31+
- name: Execute tests
32+
run: vendor/bin/phpunit --verbose

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<h1 align="center"><img src="http://infyom.com/images/logo-red-black.png" alt="InfyOm"></h1>
22

3-
43
InfyOm Laravel Generator
54
==========================
65

@@ -10,6 +9,37 @@ InfyOm Laravel Generator
109
[![License](https://poser.pugx.org/infyomlabs/laravel-generator/license)](https://packagist.org/packages/infyomlabs/laravel-generator)
1110
[![Build Status](https://travis-ci.org/InfyOmLabs/laravel-generator.svg?branch=test-cases)](https://travis-ci.org/InfyOmLabs/laravel-generator)
1211

13-
Documentation is located [here](http://labs.infyom.com/laravelgenerator)
12+
Generate Admin Panels CRUDs and APIs in Minutes with tons of other features and customizations with 3 different themes.
13+
Read [Documentation](https://www.infyom.com/open-source) for detailed installation steps and usage.
14+
15+
## Support Us
16+
17+
We have created [14+ Laravel packages](https://github.com/InfyOmLabs) and invested a lot of resources into creating these all packages and maintaining them.
18+
19+
You can support us by either sponsoring us or buying one of our paid products. Or help us by spreading the word about us on social platforms via tweets and posts.
20+
21+
### Sponsors
22+
23+
[Become a sponsor](https://opencollective.com/infyomlabs#sponsor) and get your logo on our README on Github with a link to your site.
24+
25+
<a href="https://opencollective.com/infyomlabs#sponsor"><img src="https://opencollective.com/infyomlabs/sponsors.svg?width=890"></a>
26+
27+
### Backers
28+
29+
[Become a backer](https://opencollective.com/infyomlabs#backer) and get your image on our README on Github with a link to your site.
30+
31+
<a href="https://opencollective.com/infyomlabs#backer"><img src="https://opencollective.com/infyomlabs/backers.svg?width=890"></a>
32+
33+
### Buy our Paid Products
34+
35+
[![InfyChat](https://assets.infyom.com/open-source/infychat-banner.png)](https://codecanyon.net/item/infychat-laravel-chat-app-package/25054608)
36+
37+
You can also check out our other paid products on [CodeCanyon](https://codecanyon.net/user/infyomlabs/portfolio).
38+
39+
## Made with InfyOm Generator
40+
41+
Also, Do not forget to add your website to [Made with InfyOm Generator List](https://github.com/InfyOmLabs/laravel-generator/blob/develop/made-with-generator.md) list.
42+
43+
## Video Tutorials
1444

15-
Add your website to [Made with InfyOm Generator](https://github.com/InfyOmLabs/laravel-generator/blob/develop/made-with-generator.md) list.
45+
Checkout [Video Tutorials](https://github.com/shailesh-ladumor/infyom-laravel-generator-tutorial) - **By**: [Shailesh Ladumor](https://github.com/shailesh-ladumor)

0 commit comments

Comments
 (0)