Download the PHP package kiendaotac/laravel-package-tools without Composer
On this page you can find all versions of the php package kiendaotac/laravel-package-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kiendaotac/laravel-package-tools
More information about kiendaotac/laravel-package-tools
Files in kiendaotac/laravel-package-tools
Package laravel-package-tools
Short Description Tools for creating Laravel packages
License MIT
Homepage https://github.com/spatie/laravel-package-tools
Informations about the package laravel-package-tools
Tools for creating Laravel packages
This package contains a PackageServiceProvider
that you can use in your packages to easily register config files,
migrations, and more.
Here's an example of how it can be used.
Under the hood it will do the necessary work to register the necessary things and make all sorts of files publishable.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Getting started
This package is opinionated on how you should structure your package. To get started easily, consider using our package-skeleton repo to start your package. The skeleton is structured perfectly to work perfectly with the PackageServiceProvider
in this package.
Usage
In your package you should let your service provider extend Spatie\LaravelPackageTools\PackageServiceProvider
.
Passing the package name to name
is mandatory.
Working with a config file
To register a config file, you should create a php file with your package name in the config
directory of your package. In this example it should be at <package root>/config/your-package-name.php
.
If your package name starts with laravel-
, we expect that your config file does not contain that prefix. So if your package name is laravel-cool-package
, the config file should be named cool-package.php
.
To register that config file, call hasConfigFile()
on $package
in the configurePackage
method.
The hasConfigFile
method will also make the config file publishable. Users of your package will be able to publish the config file with this command.
Working with views
Any views your package provides, should be placed in the <package root>/resources/views
directory.
You can register these views with the hasViews
command.
This will register your views with Laravel.
If you have a view <package root>/resources/views/myView.blade.php
, you can use it like this: view('your-package-name::myView')
. Of course, you can also use subdirectories to organise your views. A view located at <package root>/resources/views/subdirectory/myOtherView.blade.php
can be used with view('your-package-name::subdirectory.myOtherView')
.
Calling hasViews
will also make views publishable. Users of your package will be able to publish the views with this command:
Working with translations
Any translations your package provides, should be placed in the <package root>/resources/lang/<language-code>
directory.
You can register these translations with the hasTranslations
command.
This will register the translations with Laravel.
Assuming you save this translation file at <package root>/resources/lang/en/translations.php
...
... your package and users will be able to retrieve the translation with:
If your package name starts with laravel-
then you should leave that off in the example above.
Calling hasTranslations
will also make translations publishable. Users of your package will be able to publish the translations with this command:
Working with assets
Any assets your package provides, should be placed in the <package root>/resources/dist/
directory.
You can make these assets publishable the hasAssets
method.
Users of your package will be able to publish the assets with this command:
This will copy over the assets to the public/vendor/<your-package-name>
directory in the app where your package is installed in.
Working with migrations
The PackageServiceProvider
assumes that any migrations are placed in this directory: <package root>/database/migrations
. Inside that directory you can put any migrations. Make sure they all have a php.stub
extension. Using that extension will make sure that static analysers won't get confused with classes existing in multiple places when your migration gets published.
To register your migration, you should pass its name without the extension to the hasMigration
table.
If your migration file is called create_my_package_tables.php.stub
you can register them like this:
Should your package contain multiple migration files, you can just call hasMigration
multiple times or use hasMigrations
.
Calling hasMigration
will also make migrations publishable. Users of your package will be able to publish the migrations with this command:
Like you might expect, published migration files will be prefixed with the current datetime.
Registering commands
You can register any command you package provides with the hasCommand
function.
`
If your package provides multiple commands, you can either use hasCommand
multiple times, or pass an array to hasCommands
Working with routes
The PackageServiceProvider
assumes that any route files are placed in this directory: <package root>/routes
. Inside that directory you can put any route files.
To register your route, you should pass its name without the extension to the hasRoute
method.
If your route file is called web.php
you can register them like this:
Should your package contain multiple route files, you can just call hasRoute
multiple times or use hasRoutes
.
Using lifecycle hooks
You can put any custom logic your package needs while starting up in one of these methods:
registeringPackage
: will be called at the start of theregister
method ofPackageServiceProvider
packageRegistered
: will be called at the end of theregister
method ofPackageServiceProvider
bootingPackage
: will be called at the start of theboot
method ofPackageServiceProvider
packageBooted
: will be called at the end of theboot
method ofPackageServiceProvider
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Freek Van der Herten
- All Contributors
License
The MIT License (MIT). Please see License File for more information.