https://github.com/humweb/taggable
https://github.com/humweb/taggable
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/humweb/taggable
- Owner: humweb
- License: mit
- Created: 2022-02-20T19:11:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T12:46:28.000Z (over 2 years ago)
- Last Synced: 2025-12-14T21:41:25.275Z (7 months ago)
- Language: PHP
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# This is my package taggable
[](https://packagist.org/packages/humweb/taggable)
[](https://github.com/humweb/taggable/actions?query=workflow%3Arun-tests+branch%3Amain)
[](https://github.com/humweb/taggable/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
[](https://packagist.org/packages/humweb/taggable)
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 humweb/taggable
```
You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag="taggable-migrations"
php artisan migrate
```
You can publish the config file with:
```bash
php artisan vendor:publish --tag="taggable-config"
```
This is the contents of the published config file:
```php
return [
];
```
Optionally, you can publish the views using
```bash
php artisan vendor:publish --tag="taggable-views"
```
## Usage
```php
$taggable = new Humweb\Taggable();
echo $taggable->echoPhrase('Hello, Humweb!');
```
## Testing
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [ryun](https://github.com/ryun)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.