├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── pear-package.php ├── composer.json ├── composer.lock ├── library └── Respect │ └── Loader.php ├── package.xml ├── phpunit.xml └── tests ├── bootstrap.php ├── fixtures ├── Pear │ └── Fixture │ │ └── Example.php └── Psr0 │ └── Fixture │ └── Example.php └── library └── LoaderTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/README.md -------------------------------------------------------------------------------- /bin/pear-package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/bin/pear-package.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/composer.lock -------------------------------------------------------------------------------- /library/Respect/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/library/Respect/Loader.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/package.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/Pear/Fixture/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/tests/fixtures/Pear/Fixture/Example.php -------------------------------------------------------------------------------- /tests/fixtures/Psr0/Fixture/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/tests/fixtures/Psr0/Fixture/Example.php -------------------------------------------------------------------------------- /tests/library/LoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Respect/Loader/HEAD/tests/library/LoaderTest.php --------------------------------------------------------------------------------