Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abrahamgreyson/unique-id-for-laravel
PHP port of unique id generator, also support for Laravel.
https://github.com/abrahamgreyson/unique-id-for-laravel
Last synced: about 2 months ago
JSON representation
PHP port of unique id generator, also support for Laravel.
- Host: GitHub
- URL: https://github.com/abrahamgreyson/unique-id-for-laravel
- Owner: abrahamgreyson
- License: mit
- Created: 2022-08-14T15:42:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T10:22:11.000Z (over 1 year ago)
- Last Synced: 2024-11-20T09:29:13.408Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WIP , not production ready, do not use.
[![Latest Version on Packagist](https://img.shields.io/packagist/v/abe/string-key-for-laravel.svg?style=flat-square)](https://packagist.org/packages/abe/string-key-for-laravel)
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/abe/string-key-for-laravel/run-tests?label=tests)](https://github.com/abe/string-key-for-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/abe/string-key-for-laravel/Fix%20PHP%20code%20style%20issues?label=code%20style)](https://github.com/abe/string-key-for-laravel/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/abe/string-key-for-laravel.svg?style=flat-square)](https://packagist.org/packages/abe/string-key-for-laravel)This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
## Installation
You can install the package via composer:
```bash
composer require abe/unique-id-for-laravel
```You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag="unique-id-for-laravel-migrations"
php artisan migrate
```You can publish the config file with:
```bash
php artisan vendor:publish --tag="unique-id-for-laravel-config"
```This is the contents of the published config file:
```php
return [
];
```## Usage
```php
$stringKeyForLaravel = new Abe\UniqueId();
echo $stringKeyForLaravel->echoPhrase('Hello, StringKeyForLaravel!');
```## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](https://github.com/abrahamgreyson/.github/blob/main/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [abraham greyson](https://github.com/abrahamgreyson)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.