Download the PHP package jonasva/laravel-vision without Composer

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

Analyze images with Google Cloud Vision

Easy way to analyze images with Laravel and Google Cloud Vision. Check their demo to see what it can do.

Features

Optical Character Recognition

Convert an image or PDF document to text

Annotate image

Get annotations of your image for one or more Vision features.

Make sure you extract the same type of annotations from the response as the feature you requested. (eg: Type::FACE_DETECTION -> $response->getFaceAnnotations())

Installation

Laravel

This package can be installed through Composer.

Publish config

Google Cloud Console

In order to use the Google Cloud Vision API, you'll need to setup a couple of things in Google Cloud Console.

  1. Go to Cloud Console and select a project (or create a new one).

  2. Add your project ID to your env file under GOOGLE_CLOUD_PROJECT

  3. Go to the API library and find "Cloud Vision API". Click "Enable"

  4. Create a service account + credentials file for Cloud Vision API. Place the credentials file in your project, and add the path (relative to your project root) to it in your env file under GOOGLE_APPLICATION_CREDENTIALS. (see config/vision.php file for more details.)

  5. Setup a Google Cloud Storage bucket and make sure your newly created Cloud Vision service account user has read/write permissions to it. This bucket will be used to process PDF and TIFF type files.

  6. Add the bucket name in your env under GOOGLE_CLOUD_BUCKET

  7. I suggest setting up a lifecycle rule for your bucket to automatically remove files older than 1 day.

Pricing

Make sure you take a look at Cloud Vision API's pricing, as it's not an entirely free service.


All versions of laravel-vision with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
illuminate/support Version ^5.4
google/cloud-storage Version ^1.3
google/cloud-vision Version ^0.22.0
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 jonasva/laravel-vision contains the following files

Loading the files please wait ....