Skip to content

Commit d2af684

Browse files
committed
Moved vendor/bin to bin
Added coverage text Updated README
1 parent f9b84af commit d2af684

File tree

6 files changed

+342
-22
lines changed

6 files changed

+342
-22
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build/
22
vendor/
3-
tests/tmp/
3+
tests/tmp/
4+
bin/

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ before_script:
88
- composer install
99
- mkdir build
1010

11-
script: vendor/bin/phpunit
11+
script: bin/phpunit
1212

1313
after_script:
14-
- php vendor/bin/coveralls -v
14+
- php bin/coveralls -v

README.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,24 @@
33
[![Build Status](https://secure.travis-ci.org/ohmybrew/laravel-shopify.png?branch=master)](http://travis-ci.org/ohmybrew/laravel-shopify)
44
[![Coverage Status](https://coveralls.io/repos/github/ohmybrew/laravel-shopify/badge.svg?branch=master)](https://coveralls.io/github/ohmybrew/laravel-shopify?branch=master)
55

6-
*Work in progress*.
6+
*Work in progress*. A Laravel package for aiding in Shopify App development, it will follow suit to `shopify_app` for Rails.
77

8-
A Laravel package for aiding in Shopify App integration, it will follow suit to `shopify_app` for Rails.
8+
## Goals
9+
10+
+ Provide assistance in developing Shopify apps with Laravel
11+
+ Integration with Shopify API
12+
+ Authentication & installation for shops
13+
+ Auto install app webhooks and scripttags thorugh background jobs
14+
+ Provide basic ESDK views
15+
16+
## Requirements
17+
18+
Here are the requirements to run this Laravel package.
19+
20+
| Package | Version | Notes |
21+
| ---------------------- |:---------:|:---------------------------------------- |
22+
| `php` | 7 | Due to `ohmybrew/basic-shopify-api` |
23+
| `laravel/framework` | 5.4.* | |
924

1025
## Installation
1126

@@ -27,21 +42,12 @@ Open `app/Http/Kernel.php` find `routeMiddleware` array. Add a new line with:
2742

2843
`'auth.shop' => \OhMyBrew\ShopifyApp\Middleware\AuthShop::class,`
2944

30-
## Requirements
31-
32-
Here are the requirements to run this Laravel package.
33-
34-
| Package | Version | Notes |
35-
| -------------------- |:---------:| ----------------------------------------:|
36-
| php | 7 | Due to `ohmybrew/basic-shopify-api` |
37-
| laravel/framework | 5.4.* | |
38-
3945
## Routes
4046

4147
Here are the defined routes and what they do.
4248

4349
| Route | Notes |
44-
| -------------------- | ----------------------------------------:|
50+
| -------------------- |:---------------------------------------- |
4551
| /login | Displays login/install page |
4652
| /authenticate | Authenticates the shop/installs the shop |
4753

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"OhMyBrew\\ShopifyApp\\ShopifyAppProvider"
3939
]
4040
}
41-
}
41+
},
42+
"config": { "bin-dir": "bin" }
4243
}

0 commit comments

Comments
 (0)