Home
Softono

Detect CMS

Open source MIT PHP
92
Stars
50
Forks
5
Issues
9
Watchers
3 years
Last Commit

 About Detect CMS

PHP Library for detecting CMS

Platforms

Web Self-hosted

Languages

PHP

Links

Need Help Installing Detect CMS?

We provide expert installation service for this software. Our team will install, configure, and secure Detect CMS on your server. plans start at just $30.

Detect CMS

View on GitHub

Detect-CMS

PHP Library for detecting CMS

Install

composer require krisseck/detect-cms:dev-master

How to use:

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