Download the PHP package fusani/movies without Composer

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

PHP movie repository

This project provides various repositories and methods for searching for movies or TV shows. For your convenience, I've provided a factory to create a repository. If you'd prefer a more hands on approach, you are free to build your own adapter class. You simply need to ensure your adapter implements the Fusani\Movies\Infrastructure\Provider\Adapter interface.

This is very much an alpha version and is probably not production ready yet.

Creating a repository

There are two ways to create a repository. The simplest way is to use the provided factory.

use Fusani\Movies\Infrastructure\Persistence\OMDB;
$factory = new OMDB\MovieRepositoryFactory();
$repository = $factory->createRepository();

The other way to create a repository is to implement your own adapter and pass that in to the repository. This should be done if you prefer to use something other than Guzzle or you would like your adapter to do additional things either before or after the api call.

If you do this approach, you need to consider two things.

  1. Your adapter class needs to implement Fusani\Movies\Infrastructure\Provider\Adapter
  2. Your get method needs to return an array instead of json or xml

Using the repository

Any method beginning with oneOf will either return a Movie object or throw a NotFoundException. Methods beginning with manyWith will return an array of Movie objects or an empty array in the event that no movies were found for the provided search. There are a few need to knows for each of the search methods.

manyEpisodesOf

manyWithTitleLike

This method will return any movie matching the title provided. The api implementation will only return the first 10 results and does not support returning more rows. It does support pagination but that is not implemented at this time.

oneOfId

Here, id represents an internal imdb id.

oneOfTitle

This will return exactly one movie. In the event that more than one movie shares a title (Romeo and Juliet) for example, this will still only return one title. There is an optional year parameter that will allow you to be more specific about which movie you are looking for.


All versions of movies with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ~4.0
php Version >=5.4.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 fusani/movies contains the following files

Loading the files please wait ....