Skip to content

Commit f6b13e5

Browse files
committed
wip
1 parent a0e21d5 commit f6b13e5

File tree

5 files changed

+160
-1
lines changed

5 files changed

+160
-1
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
name: "\U0001F41B Bug Report"
3+
about: Report a general package issue.
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: chris1904
7+
---
8+
9+
<!--
10+
PLEASE READ: FILLING IN THE TEMPLATE IS REQUIRED!
11+
Issues that do not include enough information might not be picked up.
12+
Issues that have not been filled in using the issue template will be _closed_.
13+
14+
Have you read laravel-cloudfront's contributing guidelines (https://github.com/meemalabs/laravel-cloudfront/blob/master/CONTRIBUTING.md)
15+
and Code Of Conduct (https://github.com/meemalabs/laravel-cloudfront/master/CODE_OF_CONDUCT.md)?
16+
17+
By filing an Issue, you are expected to comply with it, including treating everyone with respect.
18+
19+
Please prefix your issue with: [BUG]
20+
-->
21+
22+
### Prerequisites
23+
24+
<!--
25+
Put an X between the brackets if you have done the following:
26+
-->
27+
28+
* [ ] Are you using Laravel 6 and above?
29+
* [ ] Able to reproduce the behaviour outside of your code, the problem is isolated to laravel-cloudfront?
30+
* [ ] Checked that your issue isn't already filed.
31+
* [ ] Checked if no PR was submitted that fixes this problem.
32+
33+
### Versions
34+
35+
<!-- Please be as exact and complete as possible when providing version numbers -->
36+
37+
* PHP version: <!-- put your FULL (including patch number) PHP version here -->
38+
* Laravel version: <!-- put your FULL (including patch number) Laravel version here -->
39+
* Package version: <!-- put FULL (including patch number) Laravel Text to Speech package version here -->
40+
41+
### Description
42+
43+
<!-- Describe the issue -->
44+
45+
### Steps to Reproduce
46+
47+
<!-- How can this issue be reproduced? Provide a reproduction repository to help us reproduce the issue easily. -->
48+
49+
**Expected behavior:**
50+
51+
<!-- What you expect to happen -->
52+
53+
**Actual behavior:**
54+
55+
<!-- What actually happens. Please include screenshots, stack traces and anything that can help us understand the issue. -->
56+
57+
### Additional Information
58+
59+
Any additional information, configuration or data that might be necessary to reproduce the issue.

.github/ISSUE_TEMPLATE/---ideas.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
name: "\U0001F4A1 Ideas"
3+
about: "If you have a \U0001F525 idea or proposals."
4+
title: "[IDEA]"
5+
labels: enhancement
6+
assignees: chris1904
7+
---
8+
9+
<!--
10+
11+
PLEASE READ: FILLING IN THE TEMPLATE IS REQUIRED!
12+
Issues that do not include enough information might not be picked up.
13+
14+
Have you read laravel-cloudfront's
15+
contributing guidelines (https://github.com/meemalabs/laravel-cloudfront/blob/master/CONTRIBUTING.md)
16+
and Code Of Conduct (https://github.com/meemalabs/laravel-cloudfront/master/CODE_OF_CONDUCT.md)?
17+
By filing an idea, you are expected to comply with it, including treating everyone with respect.
18+
19+
Please prefix your idea with: [IDEA].
20+
21+
-->
22+
23+
### Prerequisites
24+
25+
### Versions
26+
27+
<!-- Please be as exact and complete as possible when proving version numbers -->
28+
29+
* PHP version: <!-- put your FULL PHP version here -->
30+
* Laravel version: <!-- put your FULL Laravel version here -->
31+
* Package version: <!-- put FULL laravel-cloudfront package version here -->
32+
33+
### Description
34+
35+
<!-- Describe your proposal -->
36+
37+
### Example
38+
39+
<!-- Show an example of how this proposal will work. -->
40+
41+
### Additional Information
42+
43+
Any additional information, configuration or data that might be needed to understand the proposal.

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: composer
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10

.github/workflows/test.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
php: [7.2, 7.3, 7.4]
12+
laravel: [5.8.*, 6.*, 7.*, 8.*]
13+
dependency-version: [prefer-lowest, prefer-stable]
14+
include:
15+
- laravel: 8.*
16+
testbench: 6.*
17+
- laravel: 7.*
18+
testbench: 5.*
19+
- laravel: 6.*
20+
testbench: 4.*
21+
- laravel: 5.8.*
22+
testbench: 3.8.*
23+
exclude:
24+
- laravel: 8.*
25+
php: 7.2
26+
27+
name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
28+
29+
steps:
30+
- name: Checkout code
31+
uses: actions/checkout@v1
32+
33+
- name: Setup PHP
34+
uses: shivammathur/setup-php@v1
35+
with:
36+
php-version: ${{ matrix.php }}
37+
extensions: mbstring, intl, pdo, pdo_sqlite, sqlite
38+
39+
- name: Cache dependencies
40+
uses: actions/cache@v1
41+
with:
42+
path: ~/.composer/cache/files
43+
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
44+
45+
- name: Install dependencies
46+
run: |
47+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
48+
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
49+
- name: Execute tests
50+
run: vendor/bin/phpunit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ If you discover any security related issues, please email chris@cion.agency inst
9898
## Credits
9999

100100
- [Chris Breuer](https://github.com/Chris1904)
101-
- [Folks at Meema](https://github.com/meemaio)
101+
- [Folks at Meema](https://github.com/meemalabs)
102102
- [All Contributors](../../contributors)
103103

104104
## License

0 commit comments

Comments
 (0)