Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dmj
PicaRecord
Commits
15f0f307
Commit
15f0f307
authored
Jan 14, 2013
by
David Maus
Browse files
Add PSR-0 autoloader declaration
parent
8bb72c13
Changes
2
Hide whitespace changes
Inline
Side-by-side
composer.json
View file @
15f0f307
...
...
@@ -12,5 +12,10 @@
],
"support"
:
{
"email"
:
"maus@hab.de"
},
"autoload"
:
{
"psr-0"
:
{
"HAB\\Pica"
:
"src/"
}
}
}
tests/bootstrap.php
View file @
15f0f307
...
...
@@ -26,6 +26,5 @@ require_once realpath(__DIR__ . '/../vendor/autoload.php');
define
(
'PHPUNIT_FIXTURES'
,
realpath
(
__DIR__
.
'/fixtures'
));
$loader
=
new
Composer\Autoload\ClassLoader
();
$loader
->
add
(
'HAB'
,
realpath
(
__DIR__
.
'/../src'
));
$loader
->
add
(
'HAB'
,
realpath
(
__DIR__
.
'/src'
));
$loader
->
register
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment