Skip to content

Commit 890277d

Browse files
authored
Merge branch 'main' into ticket/2269570838-update-api-version-v2
2 parents 042eb32 + 8b1960f commit 890277d

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/* @Print-one/dev-team

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/Nexibi/print-one/discussions/new?category=q-a
4+
url: https://github.com/Print-one/print-one-laravel/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/Nexibi/print-one/discussions/new?category=ideas
7+
url: https://github.com/Print-one/print-one-laravel/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/Nexibi/print-one/security/policy
10+
url: https://github.com/Print-one/print-one-laravel/security/policy
1111
about: Learn how to notify us for sensitive bugs
1212
- name: Report a bug
13-
url: https://github.com/Nexibi/print-one/issues/new
13+
url: https://github.com/Print-one/print-one-laravel/issues/new
1414
about: Report a reproducible bug

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Nexibi\PrintOne
1+
# Print-one Laravel
2+
3+
[![Issues][issues-img]][issues-url]
4+
5+
> The official laravel package for [Print.one](https://print.one)
26
37
Laravel package that lets you send automated personalized postcards using Print.one.
48

@@ -7,7 +11,7 @@ Laravel package that lets you send automated personalized postcards using Print.
711
You can install the package via composer:
812

913
```bash
10-
composer require nexibi/print-one
14+
composer require print-one/print-one-laravel
1115
```
1216

1317
You can publish the config file with:
@@ -19,11 +23,16 @@ php artisan vendor:publish --tag="print-one-config"
1923
## Usage example
2024

2125
```php
26+
use Illuminate\Support\Facades\Config;
27+
use Nexibi\PrintOne\Facades\PrintOne;
28+
29+
Config::set('print-one.api_key', 'live_your-api-key');
2230
PrintOne::templates(); // Get available templates
2331
```
2432

25-
## Testing
33+
## Help
34+
35+
- With problems, questions or suggestions, please file an [issue](https://github.com/Print-one/print-one-laravel/issues).
36+
- For other questions, feel free to contact us at [our support page](https://support.print.one).
37+
2638

27-
```bash
28-
composer test
29-
```

0 commit comments

Comments
 (0)