dev-master
9999999-devMedias library for Laravel
MIT
The Requires
- php >=5.5.9
- doctrine/dbal ^2.5
- intervention/image ^2.3
by Helori Lanos
laravel medias
Medias library for Laravel
Medias library for laravel, (*1)
On a fresh Laravel (>= v5.4) installation, install the package by running:, (*2)
composer require helori/laravel-cms
Configure your application:, (*3)
// config/app.php 'providers' => [ ... Helori\LaravelMedias\MediasServiceProvider::class, Intervention\Image\ImageServiceProvider::class, ]; 'aliases' => [ ... 'Image' => Intervention\Image\Facades\Image::class, ];
Run the migrations:, (*4)
php artisan migrate
Publish the laravel-cms default assets and Vue components:, (*5)
php artisan vendor:publish --tag=laravel-medias-assets
At the time of this writing, Laravel 5.4 ships with the following dependencies pre-configured in your package.json:, (*6)
"devDependencies": { "axios": "^0.15.3", "bootstrap-sass": "^3.3.7", "cross-env": "^3.2.3", "jquery": "^3.1.1", "laravel-mix": "0.*", "lodash": "^4.17.4", "vue": "^2.1.10" }
Install these dependencies by running:, (*7)
npm install
Install additionnal dependencies required by this package:, (*8)
npm install font-awesome --save-dev
Compile your assets :, (*9)
npm run dev
Medias library for Laravel
MIT
laravel medias