PHPackages                             rypsx/commeaucinema - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. rypsx/commeaucinema

ActiveLibrary[API Development](/categories/api)

rypsx/commeaucinema
===================

A PHP tool to extract the cinema news from commeaucinema.com

2.0(8y ago)020MITPHPPHP &gt;=5.4.0

Since Jul 3Pushed 8y agoCompare

[ Source](https://github.com/w3spi5/commeaucinema)[ Packagist](https://packagist.org/packages/rypsx/commeaucinema)[ Docs](https://github.com/rypsx/commeaucinema)[ RSS](/packages/rypsx-commeaucinema/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

commeaucinema.com PHP API
=========================

[](#commeaucinemacom-php-api)

[![Latest Stable Version](https://camo.githubusercontent.com/daae517f601348c00c6968394a737c9362b70e11c86bbe03e9a6c621c40f981f/68747470733a2f2f706f7365722e707567782e6f72672f72797073782f636f6d6d65617563696e656d612f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/rypsx/commeaucinema) [![Total Downloads](https://camo.githubusercontent.com/b22a126826971e88e46d17d7e4691ae490ddcc45c3ec0da05e60fa9744d2c31d/68747470733a2f2f706f7365722e707567782e6f72672f72797073782f636f6d6d65617563696e656d612f646f776e6c6f6164733f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/rypsx/commeaucinema) [![License](https://camo.githubusercontent.com/c10b146699668cd648935830076f797b92d545b2635c8f510733d72090dc8baf/68747470733a2f2f706f7365722e707567782e6f72672f72797073782f636f6d6d65617563696e656d612f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/rypsx/commeaucinema) [![Monthly Downloads](https://camo.githubusercontent.com/9f4358423063c93cd454893076097119bd6a3f16981085fb4fc12168e0fb3e4b/68747470733a2f2f706f7365722e707567782e6f72672f72797073782f636f6d6d65617563696e656d612f642f6d6f6e74686c793f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/rypsx/commeaucinema)[![SensioLabsInsight](https://camo.githubusercontent.com/d02a0c4965b3fcd94cedceda178a88bf5acac96b67dac69369cf326badfa44e9/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f32313964633839352d356139312d343139642d393762312d3561386165626535663439382f6d696e692e706e67)](https://insight.sensiolabs.com/projects/219dc895-5a91-419d-97b1-5a8aebe5f498)

### [Access to English version](#english)

[](#access-to-english-version)

Ce package vous permet d'extraire les principaux flux RSS de commeaucinema.com . Il a été produit par pur besoin, car les widgets en flash proposés sur le site sont pour moi dépassés.

Présentation
------------

[](#présentation)

Ce package vous permet d'obtenir :

1. Les sorties cinéma de la semaine
2. Les films actuellement en salle
3. La liste des films qui sortiront prochainement

Les objets que vous obtenez :

```
object(Rypsx\Commeaucinema\Cinema)[4]
 public 'erreur' => array (size=0)
 public 'titre' => string (length=42)
 public 'lien' => string (length=81)
 public 'description' => string (length=47)
 public 'image' => string (length=55)
 public 'ba' => string (length=62)
```

Utilisation
-----------

[](#utilisation)

```
use Rypsx\Commeaucinema\Commeaucinema;

require __DIR__ . '/../vendor/autoload.php';

try {
    $cac = new Commeaucinema();
} catch (Exception $e) {
    print $e->getMessage();
}

echo '' . var_export($cac, true) . '';
```

Requis
------

[](#requis)

PHP5 et [Carbon](https://github.com/briannesbitt/carbon).

Composer
--------

[](#composer)

Je vous conseille vivement l'utilisation de [Composer](https://getcomposer.org/). Vous pouvez ajouter ce package en tapant la commande suivante dans votre terminal :

```
composer require rypsx/commeaucinema

```

Ou en éditant le fichier `composer.json`, tel que :

```
{
"require": {
  "rypsx/commeaucinema": "^2.x"
}

```

### Version 2.0

[](#version-20)

- Possibilité d'avoir la bande annonce de 2 manières :
    - 1e : Pas fiable, méthode de manipulation de lien (Exec time : 500ms)
    - 2e : Fiable, parse du site en récupérant la BA (Exec time : Variable entre 3.5s-6.5s)

---

English Version
-------------------------------------------------

[](#english-version-)

API PHP commeaucinema.com
=========================

[](#api-php-commeaucinemacom)

This package allows you to extract the main RSS feed commeaucinema.com. It was produced by pure need, because the flash widgets offered on the site are for me overwhelmed.

Presentation
------------

[](#presentation)

This package will get you :

1. Cinema releases for this week
2. Films now showing
3. The list of films to be released soon

Objects you get :

```
object(Rypsx\Commeaucinema\Cinema)[4]
 public 'erreur' => array (size=0)
 public 'titre' => string (length=42)
 public 'lien' => string (length=81)
 public 'description' => string (length=47)
 public 'image' => string (length=55)
 public 'ba' => string (length=62)
```

Usage
-----

[](#usage)

```
use Rypsx\Commeaucinema\Commeaucinema;

require __DIR__ . '/../vendor/autoload.php';

try {
    $cac = new Commeaucinema();
} catch (Exception $e) {
    print $e->getMessage();
}

echo '' . var_export($cac, true) . '';
```

Required
--------

[](#required)

PHP5 and [Carbon](https://github.com/briannesbitt/carbon).

Composer
--------

[](#composer-1)

I highly recommend the use of [Composer](https://getcomposer.org/). You can add this package by typing the following command in your terminal:

```
composer require rypsx/commeaucinema

```

Or by editing the `composer.json` file, such as:

```
{
"require": {
  "rypsx/commeaucinema": "^2.x"
}

```

### Version 2.0

[](#version-20-1)

- Possibility of having the trailer of 2 ways :
    - 1e : Not reliable, link manipulation method (Exec time : 500ms)
    - 2e : Reliable, parse of the site by recovering the trailer (Exec time : Variable btw 3.5s-6.5s)

Packagist
---------

[](#packagist)

[Packagist Repo URL](https://packagist.org/packages/rypsx/commeaucinema)

License
-------

[](#license)

**The MIT License (MIT)**

**Copyright (c) 2016 RypsX Dev**

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~198 days

Total

4

Last Release

3053d ago

Major Versions

1.2 → 2.02018-02-18

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8407711?v=4)[iυoni](/maintainers/w3spi5)[@w3spi5](https://github.com/w3spi5)

---

Top Contributors

[![Rypsx](https://avatars.githubusercontent.com/u/73160340?v=4)](https://github.com/Rypsx "Rypsx (1 commits)")

---

Tags

phpapitoolcommeaucinema

### Embed Badge

![Health badge](/badges/rypsx-commeaucinema/health.svg)

```
[![Health](https://phpackages.com/badges/rypsx-commeaucinema/health.svg)](https://phpackages.com/packages/rypsx-commeaucinema)
```

###  Alternatives

[temporal/sdk

Temporal SDK

4102.7M22](/packages/temporal-sdk)[tustin/psn-php

PHP wrapper for the PlayStation API.

37539.9k1](/packages/tustin-psn-php)[yxx/laravel-quick

agile development

145.5k](/packages/yxx-laravel-quick)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
