forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added composer configuration also generated PSR-4 style autoloader.
- Loading branch information
Edmondas Girkantas
committed
Mar 11, 2016
1 parent
bd7f4ea
commit 46cc9c5
Showing
7 changed files
with
519 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |
Oops, something went wrong.