https://github.com/venturedrake/laravel-marketplace
https://github.com/venturedrake/laravel-marketplace
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/venturedrake/laravel-marketplace
- Owner: venturedrake
- License: mit
- Created: 2020-11-08T05:17:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-16T02:37:05.000Z (over 5 years ago)
- Last Synced: 2025-01-22T03:45:27.331Z (over 1 year ago)
- Language: PHP
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
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
# Laravel Marketplace
[](https://travis-ci.com/venturedrake/laravel-marketplace)
[](https://github.styleci.io/repos/310991233?branch=master)
> ⚠️ Warning: This is a pre-release version that is not yet ready for production use.
## Installation
You can install the package via composer:
```bash
composer require venturedrake/laravel-marketplace
```
You can publish and run the migrations with:
```bash
php artisan vendor:publish --provider="VentureDrake\LaravelMarketplace\LaravelMarketplaceServiceProvider" --tag="migrations"
php artisan migrate
```
You can publish the config file with:
```bash
php artisan vendor:publish --provider="VentureDrake\LaravelMarketplace\LaravelMarketplaceServiceProvider" --tag="config"
```
This is the contents of the published config file:
```php
return [
];
```
## Usage
``` php
$laravel-marketplace = new VentureDrake\LaravelMarketplace();
echo $laravel-marketplace->echoPhrase('Hello, VentureDrake!');
```
## 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
- [Andrew Drake](https://github.com/AndrewDrake)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.