Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The Laravel Package Manager provides fast yet simple management of packages for your Laravel project, automating repetitive actions such as Service Provider and Facade registration.

License

NotificationsYou must be signed in to change notification settings

patinthehat/laravel-package-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


TheLaravel Package Manager provides fast, yet simple management of packages for your Laravel project.It allows you to quickly install a package via composer, if necessary, and then automatically register any or all Service Providers and Facades provided by the package.


Installation


To install, first install with composer:

composer require patinthehat/laravel-package-manager

Then, register the service provider by editingconfig/app.php and adding:

LaravelPackageManager\LaravelPackageManagerServiceProvider::class,

to the$providers array.

That's it! You now have access to the package manager commands throughartisan.


Usage


To install (via composer) a package and register any service providers or Facades it provides, use thepackage:require command:

package:require <package-name> [-r|--register-only] [-d|--dev]

The--register-only option skips the composer installation step.The--dev option allows you to install the package in your development dependencies.

To unregister service providers and facades associated with a package, use thepackage:unregister command:

package:unregister <package-name>

You will be prompted for each Service Provider and Facade, and asked if you would like to unregister it. This does not remove the package from yourvendor/ directory.


License


TheLaravel Package Manager is open source software, available under theMIT License.

About

The Laravel Package Manager provides fast yet simple management of packages for your Laravel project, automating repetitive actions such as Service Provider and Facade registration.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors3

  •  
  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp