adzon/php-cms-detector

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.0.0) of this package.

Maintainers

Package info

github.com/adzon/php-cms-detector

pkg:composer/adzon/php-cms-detector

Statistics

Installs: 71

Dependents: 0

Suggesters: 0

Stars: 1

1.0.0 2016-12-01 12:59 UTC

This package is auto-updated.

Last update: 2019-02-20 19:48:55 UTC


README

PHP Library for detecting CMS

Install

composer require "adzon/php-cms-detector"

How to use:

$domain = "http://google.com";
$cms = new \DetectCMS\DetectCMS($domain);
if($cms->getResult()) {
    echo "Detected CMS: ".$cms->getResult();
} else {
    echo "CMS couldn't be detected";
}