Dropped autoload require

Thinking this may bork the test suite because it won't be able to fine ayah.
This is just part of the move towards having a local copy of pickles in the
project installed and managed by composer. Also retabbed the composer json.
This commit is contained in:
Josh Sherman 2014-09-21 22:08:13 -04:00
parent 702414b694
commit 3701971894
2 changed files with 28 additions and 31 deletions

View file

@ -1,33 +1,33 @@
{
"name": "joshtronic/pickles",
"description": "PHP Interface Collection of Killer Libraries to Enhance Stuff",
"name": "joshtronic/pickles",
"description": "PHP Interface Collection of Killer Libraries to Enhance Stuff",
"type": "library",
"keywords": ["pickles", "framework", "rapid", "development", "mvc"],
"homepage": "https://github.com/joshtronic/pickles",
"license": "MIT",
"authors": [
{
"name": "Josh Sherman",
"email": "josh@gravityblvd.com",
"homepage": "https://github.com/joshtronic/pickles",
"license": "MIT",
"authors": [
{
"name": "Josh Sherman",
"email": "josh@gravityblvd.com",
"homepage": "http://joshtronic.com"
}
],
"repositories": [{
"type": "vcs",
"url": "https://github.com/joshtronic/php-ayah"
}],
"require-dev": {
"mikey179/vfsStream": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"require": {
"php": ">=5.4",
"devize/closure-compiler": "dev-master",
"joshtronic/php-ayah": "dev-master",
"leafo/lessphp": "dev-master",
"leafo/scssphp": "dev-master"
},
"autoload": {
"classmap": ["src/"]
}
}
],
"repositories": [{
"type": "vcs",
"url": "https://github.com/joshtronic/php-ayah"
}],
"require-dev": {
"mikey179/vfsStream": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"require": {
"php": ">=5.4",
"devize/closure-compiler": "dev-master",
"joshtronic/php-ayah": "dev-master",
"leafo/lessphp": "dev-master",
"leafo/scssphp": "dev-master"
},
"autoload": {
"classmap": ["src/"]
}
}

View file

@ -123,9 +123,6 @@ $config = Config::getInstance();
// Injects PICKLES variables into the config
$config->data['pickles']['path'] = dirname(__FILE__) . '/';
// Requires the Composer autoloader
require_once $config->pickles['path'] . '../vendor/autoload.php';
// Configures any available PHP configuration options
if (is_array($config->php) && count($config->php))
{