PHP Classes

File: tests/autoload.php

Recommend this page to a friend!
  Classes of Jelle Sebreghts   PHP TheSportsDb   tests/autoload.php   Download  
File: tests/autoload.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP TheSportsDb
Get game information from the Sports DB site API
Author: By
Last change:
Date: 7 years ago
Size: 219 bytes
 

Contents

Class file image Download
<?php
include_once __DIR__.'/../vendor/autoload.php';

$classLoader = new \Composer\Autoload\ClassLoader();
$classLoader->addPsr4("TheSportsDb\\Test\\", __DIR__ . DIRECTORY_SEPARATOR . 'src');
$classLoader->register();