-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mdpoulter
committed
Sep 14, 2019
1 parent
5e37e38
commit 501e9a0
Showing
13 changed files
with
4,995 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. In point form... | ||
2. Please. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Contributing | ||
|
||
Contributions via Pull Requests are welcome and will be fully credited. | ||
|
||
## Pull Requests | ||
|
||
1. Fork the project. | ||
|
||
1. `git clone` it and `composer install` the dependencies. | ||
|
||
1. Create a feature branch. | ||
|
||
1. **Add tests!** Your PR won't be accepted if it doesn't have tests. | ||
|
||
1. Make the changes you are proposing. | ||
|
||
1. Make sure the `README.md` and any other relevant documentation is kept up to date. | ||
|
||
1. Make sure each individual commit in your pull request is meaningful. If you made multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. | ||
|
||
1. Push to your fork. | ||
|
||
1. Open a pull request detailing your changes. **NB: One pull request per feature.** | ||
|
||
## Testing | ||
|
||
``` bash | ||
$ phpunit | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "simplesquid/laravel-vend-sdk", | ||
"description": "A Laravel provider package for our PHP SDK for Vend POS.", | ||
"type": "library", | ||
"keywords": [ | ||
"laravel", | ||
"php", | ||
"sdk", | ||
"point-of-sale", | ||
"vend" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Matthew Poulter", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.2", | ||
"illuminate/support": "~5.8.0|~6.0.0", | ||
"simplesquid/vend-sdk": "^0.1.3" | ||
}, | ||
"require-dev": { | ||
"mockery/mockery": "^1.0", | ||
"phpunit/phpunit": "^8.0", | ||
"orchestra/testbench": "^4.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"SimpleSquid\\LaravelVend\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"SimpleSquid\\LaravelVend\\Test\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"SimpleSquid\\LaravelVend\\VendServiceProvider" | ||
], | ||
"aliases": { | ||
"Vend": "providers\\LaravelVend\\VendFacade" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
Oops, something went wrong.