Download the PHP package bek96/album without Composer

On this page you can find all versions of the php package bek96/album. 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 album

Album

Latest Version on Packagist Quality Score Total Downloads

O'rnatish

Composer yordamida o'rnatish.

Konfiguratsiya fayylarini ko'chirish uchun ushbu commandani ishga tushiring.

php artisan vendor:publish --provider="Bek96\Album\AlbumServiceProvider"

Album va Image modellari jadvallarini migratsiya qiling.

php artisan migrate

Foydalanish.

<?php

namespace App;

use Bek96\Album\Traits\HasAlbum;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
    use HasAlbum;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];
}

Albumning asosiy rasmini olish.

   $user->album->image->path

Album asosiy rasmini o'zgartirish

   $file   = $request->image;
   $user->album->setImageAsCover($file);

Asosiy rasmning quyidagi o'lchamlarini xam olish mumkin.

$user->album->image->xl->path   1920xauto yoki autox1920    
$user->album->image->lg->path   1024xauto yoki autox1024
$user->album->image->md->path   512xauto yoki autox512
$user->album->image->sm->path   256xauto yoki autox256
$user->album->image->xs->path   128xauto yoki autox128
$user->album->image->sp->path   config fayldan o'qiydi x auto yoki autox64

Albumdagi barcha rasmlarni olish.

$user->album->images Rasmlar listini qaytaradi.

Image:
    -   path
    -   xl() : hasOne Image|null
    -   lg() : hasOne Image|null
    -   md() : hasOne Image|null
    -   sm() : hasOne Image|null
    -   xs() : hasOne Image|null
    -   sp() : hasOne Image|null

Albumga yangi rasm qo'shish.

$file   =   $request->image;
$user->album->addImage($file);      

Albumdan rasm olib tashlash.

$user->album->removeImage($id) 

$id o'chirilishi kerak bo'lgan image id si


All versions of album with dependencies

PHP Build Version
Package Version
Requires intervention/image Version ^2.4
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 bek96/album contains the following files

Loading the files please wait ....