Skip to content

Commit 9233220

Browse files
committed
feat: initial release
Signed-off-by: Lukas Frey <[email protected]>
1 parent 7c5341f commit 9233220

32 files changed

+6299
-542
lines changed

.github/ISSUE_TEMPLATE/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a
4+
url: https://github.com/Guava/sqids-for-laravel/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas
7+
url: https://github.com/Guava/sqids-for-laravel/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a security issue
10-
url: https://github.com/:vendor_name/:package_name/security/policy
10+
url: https://github.com/Guava/sqids-for-laravel/security/policy
1111
about: Learn how to notify us for sensitive bugs

.github/dependabot.yml

-12
This file was deleted.

.github/workflows/dependabot-auto-merge.yml

-32
This file was deleted.

.github/workflows/phpstan.yml

-26
This file was deleted.

.github/workflows/update-changelog.yml

-31
This file was deleted.

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changelog
22

3-
All notable changes to `:package_name` will be documented in this file.
3+
All notable changes to `sqids-for-laravel` will be documented in this file.

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) :vendor_name <[email protected]>
3+
Copyright (c) Guava <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+135-40
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
1-
![:package_name Banner](docs/images/banner.jpg)
1+
![sqids-for-laravel Banner](docs/images/banner.jpg)
22

33

4-
# :package_description
4+
# Laravel wrapper for Sqids
55

6-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
7-
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3Arun-tests+branch%3Amain)
8-
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/:vendor_slug/:package_slug/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/:vendor_slug/:package_slug/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
9-
[![Total Downloads](https://img.shields.io/packagist/dt/:vendor_slug/:package_slug.svg?style=flat-square)](https://packagist.org/packages/:vendor_slug/:package_slug)
10-
<!--delete-->
11-
---
12-
This repo can be used to scaffold a Laravel package. Follow these steps to get started:
6+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/guava/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
7+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/guava/sqids-for-laravel/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/guava/sqids-for-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)
8+
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/guava/sqids-for-laravel/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/guava/sqids-for-laravel/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
9+
[![Total Downloads](https://img.shields.io/packagist/dt/guava/sqids-for-laravel.svg?style=flat-square)](https://packagist.org/packages/guava/sqids-for-laravel)
1310

14-
1. Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
15-
2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
16-
3. Have fun creating your package.
17-
---
18-
<!--/delete-->
19-
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
20-
21-
## Showcase
22-
23-
This is where your screenshots and videos should go. Remember to add them, so people see what your plugin does.
11+
Laravel Wrapper for [sqids.org](https://sqids.org) PHP library.
2412

2513
## Support us
2614

@@ -33,46 +21,152 @@ While our plugin is available for all to use, if you are utilizing it for commer
3321
You can install the package via composer:
3422

3523
```bash
36-
composer require :vendor_slug/:package_slug
24+
composer require guava/sqids-for-laravel
3725
```
3826

39-
You can publish and run the migrations with:
27+
## Usage
28+
This package adds a slightly modified version of the Sqids class, which allows a fluent configuration of all options. It also adds a salting option.
4029

41-
```bash
42-
php artisan vendor:publish --tag=":package_slug-migrations"
43-
php artisan migrate
30+
### Generating Sqids
31+
There's multiple ways you can use this package to generate sqids:
32+
```php
33+
// Via our Facade
34+
use Guava\Sqids\Facades\Sqids;
35+
36+
Sqids::encode([1,2,3]); /// Outputs '86Rf07'
37+
38+
39+
40+
// Via a classic instance
41+
use Guava\Sqids\Sqids;
42+
$sqids = new Sqids();
43+
$sqids->encode([1,2,3]); /// Outputs '86Rf07'
44+
45+
46+
47+
// Via the app container / dependency injection
48+
use Guava\Sqids\Sqids;
49+
app(Sqids::class)->encode([1,2,3]); /// Outputs '86Rf07'
50+
51+
52+
53+
// Via our factory method, which simply returns an instance of Sqids
54+
// The factory method is also available on the facade class
55+
use Guava\Sqids\Sqids;
56+
Sqids::make()->encode([1,2,3]);
4457
```
4558

46-
You can publish the config file with:
59+
It's entirely up to you which way you prefer. In our examples, we will make use of the factory method.
4760

48-
```bash
49-
php artisan vendor:publish --tag=":package_slug-config"
61+
### Using in Eloquent Models
62+
This package also comes with a trait that you can use in your Eloquent models. This trait will automatically add a sqid attribute which will be created from the model's primary key.
63+
```php
64+
use \Illuminate\Database\Eloquent\Model;
65+
use \Guava\Sqids\Concerns\HasSqids;
66+
67+
class YourModel extends Model {
68+
use HasSqids;
69+
70+
// ...
71+
}
72+
````
73+
That's it! Now you can access the `sqid` attribute on your model.
74+
75+
You can custimize how the sqid on your model is generated by overriding the `getSqids` method:
76+
```php
77+
use \Illuminate\Database\Eloquent\Model;
78+
use \Guava\Sqids\Concerns\HasSqids;
79+
use \Guava\Sqids\Sqids;
80+
81+
class YourModel extends Model {
82+
use HasSqids;
83+
84+
// ...
85+
86+
protected function getSqids(): Sqids
87+
{
88+
return Sqids::make()
89+
->salt() // This will use the model's class name as the salt, so every model generates different IDs
90+
// ... add more options here
91+
);
92+
}
93+
}
94+
```
95+
96+
### Route binding
97+
If you want to be able to use the `sqid` as the route key, simply add the `HasSqidsRouting` trait to your model:
98+
```php
99+
use \Illuminate\Database\Eloquent\Model;
100+
use \Guava\Sqids\Concerns\HasSqids;
101+
use \Guava\Sqids\Concerns\HasSqidsRouting;
102+
103+
class YourModel extends Model {
104+
use HasSqids, HasSqidsRouting;
105+
106+
// ...
107+
}
50108
```
51109

52-
This is the contents of the published config file:
110+
### Options
53111

112+
#### Customizing the alphabet
54113
```php
55-
return [
56-
];
114+
use Guava\Sqids\Sqids;
115+
116+
Sqids::make()
117+
->alphabet('0123456789abcdef')
118+
->encode([1,2,3]); /// Outputs 'c9bf67'
57119
```
58120

59-
Optionally, you can publish the views using
121+
#### Customizing the minLength
122+
```php
123+
use Guava\Sqids\Sqids;
60124

61-
```bash
62-
php artisan vendor:publish --tag=":package_slug-views"
125+
Sqids::make()
126+
->minLength('8')
127+
->encode([1,2,3]); /// Outputs '86Rf07xd'
63128
```
64129

65-
## Usage
130+
#### Customizing the block list
131+
```php
132+
use Guava\Sqids\Sqids;
133+
134+
Sqids::make()
135+
->blocklist(['86Rf07'])
136+
->encode([1,2,3]); /// Outputs 'se8ojk'
137+
```
138+
139+
#### Salting
140+
Salting can be used to generate different IDs based on the provided salt, which can be any string or integer.
66141

67142
```php
68-
$variable = new VendorName\Skeleton();
69-
echo $variable->echoPhrase('Hello, VendorName!');
143+
use Guava\Sqids\Sqids;
144+
145+
Sqids::make()
146+
->salt('my-salt')
147+
->encode([1,2,3]); /// Outputs 'rx035W'
70148
```
71149

72-
## Testing
150+
Salting is especially useful when used on Models with the `HasSqids` trait and you want every model to return different, unique IDs.
73151

74-
```bash
75-
composer test
152+
So for example a record of `Model1` with the ID 1 has a different sqid that a record of `Model2` with the ID 1.
153+
```php
154+
use \Illuminate\Database\Eloquent\Model;
155+
use \Guava\Sqids\Concerns\HasSqids;
156+
use \Guava\Sqids\Sqids;
157+
158+
class YourModel extends Model {
159+
use HasSqids;
160+
161+
// ...
162+
163+
protected function getSqids(): Sqids
164+
{
165+
return Sqids::make()
166+
->salt() // This will use the model's class name as the salt, so every model generates different IDs
167+
);
168+
}
169+
}
76170
```
77171

78172
## Changelog
@@ -89,9 +183,10 @@ Please review [our security policy](../../security/policy) on how to report secu
89183

90184
## Credits
91185

92-
- [:author_name](https://github.com/:author_username)
186+
- [Lukas Frey](https://github.com/lukas-frey)
93187
- [All Contributors](../../contributors)
94188
- Spatie - Our package skeleton is a modified version of [Spatie's Package Skeleton](https://github.com/spatie/package-skeleton-laravel)
189+
- https://github.com/mtvs/eloquent-hashids
95190

96191
## License
97192

0 commit comments

Comments
 (0)