Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guojiangclub/laravel-satis
Laravel satis webhook
https://github.com/guojiangclub/laravel-satis
composer laravel laravel-package packagist satis
Last synced: 23 days ago
JSON representation
Laravel satis webhook
- Host: GitHub
- URL: https://github.com/guojiangclub/laravel-satis
- Owner: guojiangclub
- License: mit
- Created: 2019-01-28T08:16:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T07:33:45.000Z (over 5 years ago)
- Last Synced: 2024-10-01T15:17:35.024Z (about 1 month ago)
- Topics: composer, laravel, laravel-package, packagist, satis
- Language: PHP
- Homepage: https://guojiang.club
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ibrand/laravel-satis
搭建私有的包仓库,实现一个私有的 packagist。
#### 安装
```
composer require ibrand/laravel-satis:~1.0 -vvv
```#### 低于laravel5.5需要在 config/app.php 注册 ServiceProvider
```
'providers' => [
// ...
iBrand\Satis\Providers\SatisServiceProvider::class,
iBrand\Satis\Providers\RouteServiceProvider::class,
],```
#### 发布资源配置```
php artisan vendor:publish --all
```