Skip to content

Commit 8b1960f

Browse files
committed
chore: updated documentation and repository files
1 parent 07b7f66 commit 8b1960f

File tree

4 files changed

+34
-13
lines changed

4 files changed

+34
-13
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-
```

composer.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
{
2-
"name": "nexibi/print-one",
2+
"name": "print-one/print-one-laravel",
33
"description": "This is my package print-one",
44
"keywords": [
55
"nexibi",
66
"laravel",
7-
"print-one"
7+
"print.one",
8+
"printing",
9+
"rest",
10+
"print-and-mail",
11+
"postcard",
12+
"post",
13+
"api"
814
],
9-
"homepage": "https://github.com/nexibi/print-one",
15+
"homepage": "https://github.com/Print-one/print-one-laravel",
1016
"license": "MIT",
1117
"authors": [
1218
{
@@ -18,6 +24,11 @@
1824
"name": "Sibi",
1925
"email": "dev@sibi.nl",
2026
"role": "Developer"
27+
},
28+
{
29+
"name": "Print.one Development",
30+
"email": "dev@print.one",
31+
"role": "Developer"
2132
}
2233
],
2334
"require": {

0 commit comments

Comments
 (0)