KaiRo bug 412 - Use composer to load oauth2-server-php and doctrine DBAL
[authserver.git] / app / server.inc.php
index 87b6535d4132b694d008bf3076caf794d8596963..53e55b467835180bce98c78033d5a5177fe81d5e 100644 (file)
@@ -7,10 +7,6 @@
 
 // $dbata needs to be set and be an associative array with the members 'dsn', 'username', and 'password'.
 
-// Autoloading (composer is preferred, but for this example let's just do this)
-require_once('../oauth2-server-php/src/OAuth2/Autoloader.php');
-OAuth2\Autoloader::register();
-
 // $dsn is the Data Source Name for your database, for exmaple "mysql:dbname=my_oauth2_db;host=localhost"
 $oauth2_storage = new OAuth2\Storage\Pdo($dbdata);