Skip to content

Commit

Permalink
Added composer configuration also generated PSR-4 style autoloader.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edmondas Girkantas committed Mar 11, 2016
1 parent bd7f4ea commit 46cc9c5
Show file tree
Hide file tree
Showing 7 changed files with 519 additions and 0 deletions.
21 changes: 21 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"description": "A web-based control panel for PowerDNS.",
"name": "poweradmin/poweradmin",
"type": "project",
"homepage": "http://www.poweradmin.org",
"license": "GPL-3.0",
"support": {
"issues": "https://github.com/poweradmin/poweradmin/issues",
"wiki": "https://github.com/poweradmin/poweradmin/wiki",
"irc": "irc://irc.oftc.net/poweradmin",
"source": "https://github.com/poweradmin/poweradmin"
},
"require": {
"php": ">=5.5.0"
},
"autoload": {
"psr-4": {
"Poweradmin\\": "vendor/poweradmin/"
}
}
}
7 changes: 7 additions & 0 deletions vendor/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer' . '/autoload_real.php';

return ComposerAutoloaderInit02fd231869a48df50cb631d6580008da::getLoader();
Loading

0 comments on commit 46cc9c5

Please sign in to comment.