Download the PHP package sandulat/larabels without Composer

On this page you can find all versions of the php package sandulat/larabels. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package larabels

🌍 Larabels - Laravel localization labels dashboard 🌏

## About Larabels is an editor for your Laravel localization files. The main purpose of this package is to allow non-technical people commit label updates directly to the repository in development environments. It automatically parses all languages by folders from `resources/lang` and all localization files from each language. Larabels is built to work exclusively with Git. As you've might seen in the screenshot above, we've got 3 buttons fixed to the bottom of screen: `Save` - all labels from all languages will be exported to `resources/lang`. `Reset` - all the changes exported to `resources/lang` are reverted to original state. `Commit & Push` - all the changes are commited and pushed to `origin HEAD`. Note: you (or the server) must have passwordless push access to the repository. ## Installation The last command will publish Larabel's service provider, config and public front-end assets. Note: to re-publish the front-end assets when updating the package use: `php artisan larabels:publish` ## Authorization By default Larabels will be accessible by anyone in a local environment only. However it provides a customizable gate that limits access in production environments. See the `gate()` method inside the published `LarabelsServiceProvider`: ## Configuration Larabels works without any additional configuration, however it provides a config (`config/larabels.php`) with these options: |Option|Default Value|Description| |------|-------------|-----------| |`enabled`|`env('LARABELS_ENABLED', true)`|This option may be used to disable Larabels direct route access. Note: Larabels views will ignore this option so you can include them in your project.| |`middleware`|`[\Sandulat\Larabels\Http\Middleware\Authorize::class]`|These middlewares will be assigned to every Larabels route. Note that in any case Larabels routes implicitly belong to the "web" middleware.| |`whitelist`|`[]`|This value determines which localization files should be included in the dashboard. Files will be loaded from `/resources/lang/{locale}`. Use file names without extension: `auth`, `pagination`, `validation`, `passwords`, etc. Leave empty to load all files.| |`path`|`/larabels`|This value determines the base route path where the dashboard will be accessible from.| ## Customization If you would like to include the Larabels editor view directly into your personal dashboard, set the environment option `LARABELS_ENABLED` to `false` to disable direct access to the Larabels route. Now add `@include('larabels::app')` wherever you'd like. Larabels is splitted into partials so you can easily cutomize the look. Inside the path `resources/views` create the folder `vendor/larabels`. Now you can override the default Larabels views: - `components/card.blade.php` - `partials/action_buttons.blade.php` - `partials/container.blade.php` - `partials/label.blade.php` - `partials/locale_button.blade.php` ## Credits Created by [Stratulat Alexandru](https://twitter.com/sandulat).


All versions of larabels with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
czproject/git-php Version ^3.17
illuminate/support Version 5.8.*
laravel/framework Version ~5.8.0|~5.9.0
zendframework/zend-code Version ^3.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package sandulat/larabels contains the following files

Loading the files please wait ....