cocojr/allocine-spider

There is no license information available for the latest version (1.2) of this package.

Allocine spider

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Language:HTML

pkg:composer/cocojr/allocine-spider

1.2 2018-06-28 21:35 UTC

This package is auto-updated.

Last update: 2025-09-26 00:37:25 UTC


README

Build Status

Installation

composer require cocojr/allocine-spider

Tests

./vendor/bin/phpunit

Allocine Spider written in PHP

A simple class to fetch films, series and persons from allocine.fr Use fetchFilm with the allocine ID to get a \StdClass with all informations. Informations included:

  • allocineId
  • title
  • synopsis
  • img
  • releaseDate
  • duration
  • creators
  • actors
  • types
  • nationalities

Use fetchPerson with the allocine ID to get a \StdClass with all informations of the person. Informations included:

  • allocineId
  • name
  • birthDate
  • img
  • nationality
  • biography

To get the allocine ID, just show the URL: ̀http://www.allocine.fr/film/fichefilm_gen_cfilm={ALLOCINE ID}.html for a film http://www.allocine.fr/personne/fichepersonne_gen_cpersonne={ALLOCINE ID}.html for a person

@TODO: Implement the fetchSerie method.