https://github.com/binarcode/laravel-subscriptions-pending
https://github.com/binarcode/laravel-subscriptions-pending
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/binarcode/laravel-subscriptions-pending
- Owner: BinarCode
- License: mit
- Created: 2020-12-09T12:53:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T12:56:47.000Z (over 5 years ago)
- Last Synced: 2025-01-20T10:48:39.186Z (about 1 year ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Lightweight package to add payment plan subscriptions.
[](https://packagist.org/packages/binarcode/laravel-subscriptions)
[](https://github.com/binarcode/laravel-subscriptions/actions?query=workflow%3Arun-tests+branch%3Amaster)
[](https://packagist.org/packages/binarcode/laravel-subscriptions)
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 binarcode/laravel-subscriptions
```
You can publish and run the migrations with:
```bash
php artisan vendor:publish --provider="BinarCode\LaravelSubscription\LaravelSubscriptionServiceProvider" --tag="migrations"
php artisan migrate
```
You can publish the config file with:
```bash
php artisan vendor:publish --provider="BinarCode\LaravelSubscription\LaravelSubscriptionServiceProvider" --tag="config"
```
This is the contents of the published config file:
```php
return [
];
```
## Usage
``` php
$laravel-subscriptions = new BinarCode\LaravelSubscription();
echo $laravel-subscriptions->echoPhrase('Hello, BinarCode!');
```
## 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
- [Eduard Lupacescu](https://github.com/binaryk)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.