diff --git a/.env-dist b/.env-dist index 54778e70..10e4bed0 100644 --- a/.env-dist +++ b/.env-dist @@ -9,5 +9,13 @@ DB_PASSWORD=password CACHE_DRIVER=file SESSION_DRIVER=file +QUEUE_DRIVER=sync -LOCAL_FILE_ROOT=app \ No newline at end of file +MAIL_DRIVER=smtp +MAIL_HOST=mailtrap.io +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null + +LOCAL_FILE_ROOT=app +LANDING_PAGE=/dreamfactory/dist/ diff --git a/.env.example b/.env.example deleted file mode 100644 index 95e5d813..00000000 --- a/.env.example +++ /dev/null @@ -1,18 +0,0 @@ -APP_ENV=local -APP_DEBUG=true -APP_KEY=SomeRandomString - -DB_HOST=localhost -DB_DATABASE=homestead -DB_USERNAME=homestead -DB_PASSWORD=secret - -CACHE_DRIVER=file -SESSION_DRIVER=file -QUEUE_DRIVER=sync - -MAIL_DRIVER=smtp -MAIL_HOST=mailtrap.io -MAIL_PORT=2525 -MAIL_USERNAME=null -MAIL_PASSWORD=null diff --git a/.gitignore b/.gitignore index f149b02a..26c52442 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,8 @@ /log /public/test_report /public/swagger -/workbench/repos +/public/dreamfactory +/workbench composer.phar _ide_helper.php .env.*.php diff --git a/app/Http/Controllers/SplashController.php b/app/Http/Controllers/SplashController.php index b7500e76..c630f5bd 100644 --- a/app/Http/Controllers/SplashController.php +++ b/app/Http/Controllers/SplashController.php @@ -47,7 +47,8 @@ public function __construct() */ public function index() { - return view( 'splash' ); + return redirect(env('LANDING_PAGE', '/launchpad')); +// return view( 'splash' ); } /** @@ -105,7 +106,7 @@ public static function handleADLdapLogin( $provider ) \Auth::login( $user, \Request::has( 'remember' ) ); - return redirect()->intended( '/launchpad' ); + return redirect()->intended( env('LANDING_PAGE', '/launchpad') ); } } @@ -150,7 +151,7 @@ public function handleOAuthCallback( $serviceName ) } else { - return redirect()->intended( '/launchpad' ); + return redirect()->intended( env('LANDING_PAGE', '/launchpad') ); } } } \ No newline at end of file diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index fa883e75..f9342d01 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -34,7 +34,7 @@ public function handle($request, Closure $next) { if ($this->auth->check()) { - return new RedirectResponse(url('/launchpad')); + return new RedirectResponse(url(env('LANDING_PAGE', '/launchpad'))); } return $next($request); diff --git a/composer.json b/composer.json index c06f9713..c397ea51 100755 --- a/composer.json +++ b/composer.json @@ -31,6 +31,10 @@ "minimum-stability": "dev", "prefer-stable": true, "repositories": [ + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/dsp-admin-app.git" + }, { "type": "vcs", "url": "git@github.com:dreamfactorysoftware/rave.git" @@ -82,6 +86,7 @@ ], "require": { "laravel/framework": "5.0.*", + "dreamfactory/dsp-admin-app": "dev-develop as dev-master", "dreamfactory/rave": "dev-develop as dev-master", "dreamfactory/rave-aws": "dev-develop as dev-master", "dreamfactory/rave-azure": "dev-develop as dev-master", @@ -138,6 +143,9 @@ "extra": { "branch-alias": { "dev-develop": "0.0.x-dev" + }, + "installer-paths": { + "public/{$name}/": ["type:dreamfactory-app"] } } } diff --git a/composer.json-dist b/composer.json-dist index 9e7f6081..c397ea51 100755 --- a/composer.json-dist +++ b/composer.json-dist @@ -1,119 +1,151 @@ { - "name": "dreamfactory/app", + "name": "dreamfactory/dsp-laravel", "description": "The DreamFactory RAVE(tm) Core.", "keywords": [ - "dreamfactory", - "dsp", - "rave" + "dreamfactory", + "dsp", + "rave" ], "homepage": "https://www.dreamfactory.com/", "license": "Apache-2.0", "authors": [ - { - "name": "Arif Islam", - "email": "arifislam@dreamfactory.com" - }, - { - "name": "Jerry Ablan", - "email": "jerryablan@dreamfactory.com" - }, - { - "name": "Lee Hicks", - "email": "leehicks@dreamfactory.com" - } + { + "name": "Arif Islam", + "email": "arifislam@dreamfactory.com" + }, + { + "name": "Jerry Ablan", + "email": "jerryablan@dreamfactory.com" + }, + { + "name": "Lee Hicks", + "email": "leehicks@dreamfactory.com" + } ], "support": { - "email": "support@dreamfactory.com", - "issues": "https://github.com/dreamfactorysoftware/rave/issues", - "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", - "source": "https://github.com/dreamfactorysoftware/rave" + "email": "support@dreamfactory.com", + "issues": "https://github.com/dreamfactorysoftware/rave/issues", + "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", + "source": "https://github.com/dreamfactorysoftware/rave" }, "minimum-stability": "dev", "prefer-stable": true, - "repositories": [ - { - "type": "vcs", - "url": "git@github.com:dreamfactorysoftware/rave.git" - }, - { - "type":"vcs", - "url": "git@github.com:dreamfactorysoftware/rave-aws.git" + "repositories": [ + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/dsp-admin-app.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-aws.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-azure.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-rackspace.git" }, { - "type":"vcs", - "url": "git@github.com:dreamfactorysoftware/rave-azure.git" + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-sqldb.git" }, { - "type":"vcs", - "url": "git@github.com:dreamfactorysoftware/rave-rackspace.git" + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-mongodb.git" }, { - "type":"vcs", - "url": "git@github.com:dreamfactorysoftware/rave-sqldb.git" + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-rws.git" }, { - "type":"vcs", - "url": "git@github.com:dreamfactorysoftware/rave-mongodb.git" + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-sqldb-core.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/rave-user-mgmt.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/dsp-oauth.git" + }, + { + "type": "vcs", + "url": "git@github.com:dreamfactorysoftware/dsp-adldap.git" }, { "type": "pear", "url": "http://pear.php.net" } ], - "require": { - "laravel/framework": "5.0.*", - "dreamfactory/php-utils": "dev-develop as dev-master", - "dreamfactory/rave": "dev-develop as dev-master", - "dreamfactory/rave-aws": "dev-develop as dev-master", - "dreamfactory/rave-azure": "dev-develop as dev-master", - "dreamfactory/rave-rackspace": "dev-develop as dev-master", - "dreamfactory/rave-sqldb": "dev-develop as dev-master", - "dreamfactory/rave-mongodb": "dev-develop as dev-master", - "rhumsaa/array_column": "~1.1" - }, - "require-dev": { - "barryvdh/laravel-ide-helper": "~2.0", - "laracasts/generators": "~1.0", - "laracasts/testdummy": "~2.0", - "phpunit/phpunit": "~4.0", - "phpspec/phpspec": "~2.1" - }, - "autoload": { - "classmap": [ - "database" - ], - "psr-4": { - "App\\": "app/", - } - }, - "autoload-dev": { - "classmap": [ - "tests/TestCase.php" - ] - }, - "scripts": { - "post-install-cmd": [ - "php artisan clear-compiled", - "php artisan ide-helper:generate", - "php artisan optimize" - ], - "post-update-cmd": [ - "php artisan clear-compiled", - "php artisan ide-helper:generate", - "php artisan optimize" - ], - "post-create-project-cmd": [ - "php -r \"copy('.env-dist', '.env');\"", - "php -r \"copy('phpunit.xml-dist', 'phpunit.xml');\"", - "php artisan key:generate" - ] - }, - "config": { - "preferred-install": "dist" - }, - "extra": { - "branch-alias": { - "dev-develop": "0.0.x-dev" - } - } + "require": { + "laravel/framework": "5.0.*", + "dreamfactory/dsp-admin-app": "dev-develop as dev-master", + "dreamfactory/rave": "dev-develop as dev-master", + "dreamfactory/rave-aws": "dev-develop as dev-master", + "dreamfactory/rave-azure": "dev-develop as dev-master", + "dreamfactory/rave-rackspace": "dev-develop as dev-master", + "dreamfactory/rave-sqldb": "dev-develop as dev-master", + "dreamfactory/rave-mongodb": "dev-develop as dev-master", + "dreamfactory/rave-rws": "dev-develop as dev-master", + "dreamfactory/rave-user-mgmt": "dev-develop as dev-master", + "dreamfactory/dsp-oauth": "dev-develop as dev-master", + "dreamfactory/dsp-adldap": "dev-develop as dev-master" + }, + "require-dev": { + "barryvdh/laravel-ide-helper": "~2.0", + "laracasts/generators": "~1.0", + "laracasts/testdummy": "~2.0", + "phpunit/phpunit": "~4.0", + "phpspec/phpspec": "~2.1" + }, + "autoload": { + "classmap": [ + "database" + ], + "psr-4": { + "App\\": "app/" + } + }, + "autoload-dev": { + "classmap": [ + "tests/TestCase.php" + ] + }, + "scripts": { + "post-install-cmd": [ + "php artisan clear-compiled", + "php artisan ide-helper:generate", + "php artisan optimize", + "php pull_migrations" + ], + "post-update-cmd": [ + "php artisan clear-compiled", + "php artisan ide-helper:generate", + "php artisan optimize", + "php pull_migrations" + ], + "post-create-project-cmd": [ + "php -r \"copy('.env-dist', '.env');\"", + "php -r \"copy('phpunit.xml-dist', 'phpunit.xml');\"", + "php artisan key:generate" + ] + }, + "config": { + "preferred-install": "dist" + }, + "extra": { + "branch-alias": { + "dev-develop": "0.0.x-dev" + }, + "installer-paths": { + "public/{$name}/": ["type:dreamfactory-app"] + } + } } diff --git a/composer.lock b/composer.lock index 7c827f05..6341b0fc 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "adc038954f4f13fc8af318defd5f3a24", + "hash": "2270548a4d269651dbde38649d9fa5bf", "packages": [ { "name": "adldap/adldap", @@ -211,20 +211,20 @@ }, { "name": "classpreloader/classpreloader", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/ClassPreloader/ClassPreloader.git", - "reference": "0544616ba33fb2a6b792b3a7822650810c6d65d9" + "reference": "b76f3f4f603ebbe7e64351a7ef973431ddaf7b27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/0544616ba33fb2a6b792b3a7822650810c6d65d9", - "reference": "0544616ba33fb2a6b792b3a7822650810c6d65d9", + "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/b76f3f4f603ebbe7e64351a7ef973431ddaf7b27", + "reference": "b76f3f4f603ebbe7e64351a7ef973431ddaf7b27", "shasum": "" }, "require": { - "nikic/php-parser": "^1.2.2", + "nikic/php-parser": "~1.3", "php": ">=5.3.3", "symfony/console": "~2.1", "symfony/filesystem": "~2.1", @@ -239,7 +239,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.4-dev" } }, "autoload": { @@ -252,13 +252,13 @@ "MIT" ], "authors": [ - { - "name": "Graham Campbell", - "email": "graham@mineuk.com" - }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com" + }, + { + "name": "Graham Campbell", + "email": "graham@cachethq.io" } ], "description": "Helps class loading performance by generating a single PHP file containing all of the autoloaded files for a specific use case", @@ -267,7 +267,7 @@ "class", "preload" ], - "time": "2015-04-15 21:59:30" + "time": "2015-05-26 10:57:51" }, { "name": "danielstjules/stringy", @@ -489,12 +489,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/dsp-adldap.git", - "reference": "51ec8d498a26018e3275906f2c516429b4eb6d16" + "reference": "2ca3c3f0b8169af753fd9a411a942a6dc3cdd792" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/dsp-adldap/zipball/51ec8d498a26018e3275906f2c516429b4eb6d16", - "reference": "51ec8d498a26018e3275906f2c516429b4eb6d16", + "url": "https://api.github.com/repos/dreamfactorysoftware/dsp-adldap/zipball/2ca3c3f0b8169af753fd9a411a942a6dc3cdd792", + "reference": "2ca3c3f0b8169af753fd9a411a942a6dc3cdd792", "shasum": "" }, "require": { @@ -537,7 +537,62 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:59:35" + "time": "2015-05-18 19:46:49" + }, + { + "name": "dreamfactory/dsp-admin-app", + "version": "dev-develop", + "source": { + "type": "git", + "url": "git@github.com:dreamfactorysoftware/dsp-admin-app.git", + "reference": "a39286527648b12149c2f1c519b67bfcf12f77f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dreamfactorysoftware/dsp-admin-app/zipball/a39286527648b12149c2f1c519b67bfcf12f77f7", + "reference": "a39286527648b12149c2f1c519b67bfcf12f77f7", + "shasum": "" + }, + "require": { + "dreamfactory/installer": "*" + }, + "type": "dreamfactory-app", + "extra": { + "branch-alias": { + "dev-develop": "0.9-dev" + }, + "installer-name": "dreamfactory" + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Todd Appleton", + "email": "toddappleton@dreamfactory.com", + "role": "Lead Developer and QA, client-side" + } + ], + "description": "DreamFactory Services Platform(tm) Admin Console", + "homepage": "https://github.com/dreamfactorysoftware/dsp-admin-app/", + "keywords": [ + "admin", + "cloud-computing", + "dsp", + "dsp-core", + "esb", + "framework", + "remote web services", + "rest", + "service bus" + ], + "support": { + "email": "support@dreamfactory.com", + "issues": "https://github.com/dreamfactorysoftware/dsp-admin-app/issues", + "wiki": "https://github.com/dreamfactorysoftware/dsp-admin-app/wiki", + "source": "https://github.com/dreamfactorysoftware/dsp-admin-app" + }, + "time": "2015-06-02 21:09:00" }, { "name": "dreamfactory/dsp-oauth", @@ -545,12 +600,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/dsp-oauth.git", - "reference": "49c889976c98e31d493c19c0ee7cab163247e2bc" + "reference": "713851a648a6169d344f8678a5e0cb8ecab3a3c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/dsp-oauth/zipball/49c889976c98e31d493c19c0ee7cab163247e2bc", - "reference": "49c889976c98e31d493c19c0ee7cab163247e2bc", + "url": "https://api.github.com/repos/dreamfactorysoftware/dsp-oauth/zipball/713851a648a6169d344f8678a5e0cb8ecab3a3c4", + "reference": "713851a648a6169d344f8678a5e0cb8ecab3a3c4", "shasum": "" }, "require": { @@ -591,7 +646,55 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 21:00:02" + "time": "2015-05-29 20:25:58" + }, + { + "name": "dreamfactory/installer", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/dreamfactorysoftware/installer.git", + "reference": "f2f264aaf117c0d94c448a6fa92bbce8970c49e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dreamfactorysoftware/installer/zipball/f2f264aaf117c0d94c448a6fa92bbce8970c49e8", + "reference": "f2f264aaf117c0d94c448a6fa92bbce8970c49e8", + "shasum": "" + }, + "require-dev": { + "composer/composer": "1.0.*@dev", + "phpunit/phpunit": "@stable" + }, + "type": "composer-installer", + "extra": { + "class": "DreamFactory\\Tools\\Composer\\Installer\\Installer", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "DreamFactory\\Tools\\Composer\\Installer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "DreamFactory Services Platform(tm) Library Installer", + "homepage": "https://www.dreamfactory.com/", + "keywords": [ + "Service Bus", + "cloud-computing", + "dsp", + "dsp-core", + "esb", + "framework", + "remote web services", + "rest" + ], + "time": "2015-01-22 19:58:42" }, { "name": "dreamfactory/php-utils", @@ -599,12 +702,12 @@ "source": { "type": "git", "url": "https://github.com/dreamfactorysoftware/php-utils.git", - "reference": "9f0e78312dbd968b68d61a5f9a01fdb153a017a2" + "reference": "7f7eff0ff110a6e6985ceb85f62466db4df33702" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/php-utils/zipball/9f0e78312dbd968b68d61a5f9a01fdb153a017a2", - "reference": "9f0e78312dbd968b68d61a5f9a01fdb153a017a2", + "url": "https://api.github.com/repos/dreamfactorysoftware/php-utils/zipball/7f7eff0ff110a6e6985ceb85f62466db4df33702", + "reference": "7f7eff0ff110a6e6985ceb85f62466db4df33702", "shasum": "" }, "require": { @@ -642,7 +745,7 @@ "dreamfactory", "utility" ], - "time": "2015-05-08 20:24:38" + "time": "2015-05-28 21:31:46" }, { "name": "dreamfactory/rave", @@ -650,12 +753,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave.git", - "reference": "6fe5e80999547efe2fca5eac58487c82816dd3b0" + "reference": "8a4115e17b1ad431f2f2c235b065d1d5a8e58ceb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave/zipball/6fe5e80999547efe2fca5eac58487c82816dd3b0", - "reference": "6fe5e80999547efe2fca5eac58487c82816dd3b0", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave/zipball/8a4115e17b1ad431f2f2c235b065d1d5a8e58ceb", + "reference": "8a4115e17b1ad431f2f2c235b065d1d5a8e58ceb", "shasum": "" }, "require": { @@ -712,7 +815,7 @@ "source": "https://github.com/dreamfactorysoftware/rave/tree/develop", "issues": "https://github.com/dreamfactorysoftware/rave/issues" }, - "time": "2015-05-15 21:23:43" + "time": "2015-06-02 14:58:01" }, { "name": "dreamfactory/rave-aws", @@ -720,12 +823,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-aws.git", - "reference": "efbde99e7f95c59e1a822a787460e971e9322678" + "reference": "fef883fdde72e13cdb3e0386e81fcc19cdfe33ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-aws/zipball/efbde99e7f95c59e1a822a787460e971e9322678", - "reference": "efbde99e7f95c59e1a822a787460e971e9322678", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-aws/zipball/fef883fdde72e13cdb3e0386e81fcc19cdfe33ad", + "reference": "fef883fdde72e13cdb3e0386e81fcc19cdfe33ad", "shasum": "" }, "require": { @@ -771,7 +874,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:44:23" + "time": "2015-05-29 20:26:46" }, { "name": "dreamfactory/rave-azure", @@ -779,12 +882,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-azure.git", - "reference": "54d644958c3c4de0ea8dee24b70c8934d5d08981" + "reference": "66397f565a421eef2eeb5a721ea1799feba7f7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-azure/zipball/54d644958c3c4de0ea8dee24b70c8934d5d08981", - "reference": "54d644958c3c4de0ea8dee24b70c8934d5d08981", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-azure/zipball/66397f565a421eef2eeb5a721ea1799feba7f7ed", + "reference": "66397f565a421eef2eeb5a721ea1799feba7f7ed", "shasum": "" }, "require": { @@ -830,7 +933,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:44:52" + "time": "2015-05-27 19:49:10" }, { "name": "dreamfactory/rave-mongodb", @@ -838,12 +941,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-mongodb.git", - "reference": "52f7f93b4fca495af83cf29c3e4d191c8f726155" + "reference": "29bb6e49034b5dd95a160b28b442e5d3e0b2971f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-mongodb/zipball/52f7f93b4fca495af83cf29c3e4d191c8f726155", - "reference": "52f7f93b4fca495af83cf29c3e4d191c8f726155", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-mongodb/zipball/29bb6e49034b5dd95a160b28b442e5d3e0b2971f", + "reference": "29bb6e49034b5dd95a160b28b442e5d3e0b2971f", "shasum": "" }, "require": { @@ -899,7 +1002,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:48:43" + "time": "2015-05-29 20:24:29" }, { "name": "dreamfactory/rave-rackspace", @@ -907,12 +1010,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-rackspace.git", - "reference": "4509503272a37504abbebed0a18644307577358e" + "reference": "5e36ed43831e3f459acc87821dd90fbc580e8ee6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-rackspace/zipball/4509503272a37504abbebed0a18644307577358e", - "reference": "4509503272a37504abbebed0a18644307577358e", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-rackspace/zipball/5e36ed43831e3f459acc87821dd90fbc580e8ee6", + "reference": "5e36ed43831e3f459acc87821dd90fbc580e8ee6", "shasum": "" }, "require": { @@ -958,7 +1061,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:46:38" + "time": "2015-05-27 19:49:22" }, { "name": "dreamfactory/rave-rws", @@ -966,12 +1069,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-rws.git", - "reference": "c4aba4d98230b30d7a43972f2854a1fdcfc7b4b5" + "reference": "3c3bc428f56a60b2316771c4c5b06642b0de6cc0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-rws/zipball/c4aba4d98230b30d7a43972f2854a1fdcfc7b4b5", - "reference": "c4aba4d98230b30d7a43972f2854a1fdcfc7b4b5", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-rws/zipball/3c3bc428f56a60b2316771c4c5b06642b0de6cc0", + "reference": "3c3bc428f56a60b2316771c4c5b06642b0de6cc0", "shasum": "" }, "require": { @@ -1014,7 +1117,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:49:12" + "time": "2015-06-02 15:51:11" }, { "name": "dreamfactory/rave-sqldb", @@ -1022,12 +1125,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-sqldb.git", - "reference": "825f48b3b7c3ba2c5aa791aa50cc4405414cd143" + "reference": "8000195efff0b93c1fc64a7074da221a51cda04e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-sqldb/zipball/825f48b3b7c3ba2c5aa791aa50cc4405414cd143", - "reference": "825f48b3b7c3ba2c5aa791aa50cc4405414cd143", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-sqldb/zipball/8000195efff0b93c1fc64a7074da221a51cda04e", + "reference": "8000195efff0b93c1fc64a7074da221a51cda04e", "shasum": "" }, "require": { @@ -1087,7 +1190,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 20:58:29" + "time": "2015-06-02 15:43:46" }, { "name": "dreamfactory/rave-sqldb-core", @@ -1095,12 +1198,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-sqldb-core.git", - "reference": "6aa997dabcdbdc179b8e3d616ce5db792d45f2b8" + "reference": "e6eea2eab1f9a1e7f35d77aa680220f939d4be7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-sqldb-core/zipball/6aa997dabcdbdc179b8e3d616ce5db792d45f2b8", - "reference": "6aa997dabcdbdc179b8e3d616ce5db792d45f2b8", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-sqldb-core/zipball/e6eea2eab1f9a1e7f35d77aa680220f939d4be7e", + "reference": "e6eea2eab1f9a1e7f35d77aa680220f939d4be7e", "shasum": "" }, "require": { @@ -1160,7 +1263,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-02 23:19:04" + "time": "2015-05-29 20:22:41" }, { "name": "dreamfactory/rave-user-mgmt", @@ -1168,12 +1271,12 @@ "source": { "type": "git", "url": "git@github.com:dreamfactorysoftware/rave-user-mgmt.git", - "reference": "0cdbf6d1aedc0c29ad56c23fb0e70a98359b6085" + "reference": "527a9c15ce4428c41055abe638bfda91f3c5e16b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dreamfactorysoftware/rave-user-mgmt/zipball/0cdbf6d1aedc0c29ad56c23fb0e70a98359b6085", - "reference": "0cdbf6d1aedc0c29ad56c23fb0e70a98359b6085", + "url": "https://api.github.com/repos/dreamfactorysoftware/rave-user-mgmt/zipball/527a9c15ce4428c41055abe638bfda91f3c5e16b", + "reference": "527a9c15ce4428c41055abe638bfda91f3c5e16b", "shasum": "" }, "require": { @@ -1216,7 +1319,7 @@ "wiki": "https://github.com/dreamfactorysoftware/rave/wiki", "source": "https://github.com/dreamfactorysoftware/rave" }, - "time": "2015-05-15 17:18:19" + "time": "2015-06-01 21:11:58" }, { "name": "guzzle/guzzle", @@ -1315,26 +1418,26 @@ }, { "name": "guzzlehttp/guzzle", - "version": "5.2.0", + "version": "5.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "475b29ccd411f2fa8a408e64576418728c032cfa" + "reference": "f3c8c22471cb55475105c14769644a49c3262b93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/475b29ccd411f2fa8a408e64576418728c032cfa", - "reference": "475b29ccd411f2fa8a408e64576418728c032cfa", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f3c8c22471cb55475105c14769644a49c3262b93", + "reference": "f3c8c22471cb55475105c14769644a49c3262b93", "shasum": "" }, "require": { - "guzzlehttp/ringphp": "~1.0", + "guzzlehttp/ringphp": "^1.1", "php": ">=5.4.0" }, "require-dev": { "ext-curl": "*", - "phpunit/phpunit": "~4.0", - "psr/log": "~1.0" + "phpunit/phpunit": "^4.0", + "psr/log": "^1.0" }, "type": "library", "extra": { @@ -1369,20 +1472,20 @@ "rest", "web service" ], - "time": "2015-01-28 01:03:29" + "time": "2015-05-20 03:47:55" }, { "name": "guzzlehttp/ringphp", - "version": "1.0.7", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/guzzle/RingPHP.git", - "reference": "52d868f13570a9a56e5fce6614e0ec75d0f13ac2" + "reference": "dbbb91d7f6c191e5e405e900e3102ac7f261bc0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/52d868f13570a9a56e5fce6614e0ec75d0f13ac2", - "reference": "52d868f13570a9a56e5fce6614e0ec75d0f13ac2", + "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/dbbb91d7f6c191e5e405e900e3102ac7f261bc0b", + "reference": "dbbb91d7f6c191e5e405e900e3102ac7f261bc0b", "shasum": "" }, "require": { @@ -1400,7 +1503,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.1-dev" } }, "autoload": { @@ -1420,7 +1523,7 @@ } ], "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", - "time": "2015-03-30 01:43:20" + "time": "2015-05-20 03:37:09" }, { "name": "guzzlehttp/streams", @@ -1660,16 +1763,16 @@ }, { "name": "laravel/framework", - "version": "v5.0.31", + "version": "v5.0.32", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "db0a7400465df159ba8c6eaa954f97f50bc19687" + "reference": "85f12207cf45cc288e9e6b9b5d184aad5f08e2ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/db0a7400465df159ba8c6eaa954f97f50bc19687", - "reference": "db0a7400465df159ba8c6eaa954f97f50bc19687", + "url": "https://api.github.com/repos/laravel/framework/zipball/85f12207cf45cc288e9e6b9b5d184aad5f08e2ca", + "reference": "85f12207cf45cc288e9e6b9b5d184aad5f08e2ca", "shasum": "" }, "require": { @@ -1782,7 +1885,7 @@ "framework", "laravel" ], - "time": "2015-05-11 22:15:00" + "time": "2015-05-29 18:56:49" }, { "name": "laravel/socialite", @@ -1923,16 +2026,16 @@ }, { "name": "league/oauth1-client", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth1-client.git", - "reference": "b378b2ba54f0de789628c9b5784bcf01c8303adf" + "reference": "815b2dbd2b866409f3de6e4046a76e66b5af608e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/b378b2ba54f0de789628c9b5784bcf01c8303adf", - "reference": "b378b2ba54f0de789628c9b5784bcf01c8303adf", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/815b2dbd2b866409f3de6e4046a76e66b5af608e", + "reference": "815b2dbd2b866409f3de6e4046a76e66b5af608e", "shasum": "" }, "require": { @@ -1982,7 +2085,7 @@ "tumblr", "twitter" ], - "time": "2015-04-07 00:07:18" + "time": "2015-05-18 00:04:43" }, { "name": "monolog/monolog", @@ -2766,17 +2869,17 @@ }, { "name": "symfony/console", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Console", "source": { "type": "git", "url": "https://github.com/symfony/Console.git", - "reference": "ebc5679854aa24ed7d65062e9e3ab0b18a917272" + "reference": "b5ec0c11a204718f2b656357f5505a8e578f30dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Console/zipball/ebc5679854aa24ed7d65062e9e3ab0b18a917272", - "reference": "ebc5679854aa24ed7d65062e9e3ab0b18a917272", + "url": "https://api.github.com/repos/symfony/Console/zipball/b5ec0c11a204718f2b656357f5505a8e578f30dd", + "reference": "b5ec0c11a204718f2b656357f5505a8e578f30dd", "shasum": "" }, "require": { @@ -2820,21 +2923,21 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-29 14:42:58" }, { "name": "symfony/debug", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Debug", "source": { "type": "git", "url": "https://github.com/symfony/Debug.git", - "reference": "ad4511a8fddce7ec163b513ba39a30ea4f32c9e7" + "reference": "4851a041c48e76b91a221db84ab5850daa6a7b33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Debug/zipball/ad4511a8fddce7ec163b513ba39a30ea4f32c9e7", - "reference": "ad4511a8fddce7ec163b513ba39a30ea4f32c9e7", + "url": "https://api.github.com/repos/symfony/Debug/zipball/4851a041c48e76b91a221db84ab5850daa6a7b33", + "reference": "4851a041c48e76b91a221db84ab5850daa6a7b33", "shasum": "" }, "require": { @@ -2881,25 +2984,24 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2015-05-08 13:17:44" + "time": "2015-05-20 13:09:45" }, { "name": "symfony/dependency-injection", - "version": "v2.6.7", - "target-dir": "Symfony/Component/DependencyInjection", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/symfony/DependencyInjection.git", - "reference": "b575c160af001d3525ee733085bcc4ec7c8e1b51" + "reference": "137bf489c5151c7eb1e4b7dd34a123f9a74b966d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/b575c160af001d3525ee733085bcc4ec7c8e1b51", - "reference": "b575c160af001d3525ee733085bcc4ec7c8e1b51", + "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/137bf489c5151c7eb1e4b7dd34a123f9a74b966d", + "reference": "137bf489c5151c7eb1e4b7dd34a123f9a74b966d", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.9" }, "conflict": { "symfony/expression-language": "<2.6" @@ -2918,11 +3020,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { - "psr-0": { + "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" } }, @@ -2942,25 +3044,24 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-29 14:44:44" }, { "name": "symfony/event-dispatcher", - "version": "v2.6.7", - "target-dir": "Symfony/Component/EventDispatcher", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/symfony/EventDispatcher.git", - "reference": "672593bc4b0043a0acf91903bb75a1c82d8f2e02" + "reference": "687039686d0e923429ba6e958d0baa920cd5d458" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/672593bc4b0043a0acf91903bb75a1c82d8f2e02", - "reference": "672593bc4b0043a0acf91903bb75a1c82d8f2e02", + "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/687039686d0e923429ba6e958d0baa920cd5d458", + "reference": "687039686d0e923429ba6e958d0baa920cd5d458", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.9" }, "require-dev": { "psr/log": "~1.0", @@ -2977,11 +3078,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { - "psr-0": { + "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" } }, @@ -3001,25 +3102,24 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-02 15:21:08" }, { "name": "symfony/filesystem", - "version": "v2.6.7", - "target-dir": "Symfony/Component/Filesystem", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/symfony/Filesystem.git", - "reference": "f73904bd2dae525c42ea1f0340c7c98480ecacde" + "reference": "ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Filesystem/zipball/f73904bd2dae525c42ea1f0340c7c98480ecacde", - "reference": "f73904bd2dae525c42ea1f0340c7c98480ecacde", + "url": "https://api.github.com/repos/symfony/Filesystem/zipball/ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba", + "reference": "ae4551fd6d4d4f51f2e7390fbc902fbd67f3b7ba", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.9" }, "require-dev": { "symfony/phpunit-bridge": "~2.7" @@ -3027,11 +3127,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { - "psr-0": { + "psr-4": { "Symfony\\Component\\Filesystem\\": "" } }, @@ -3051,21 +3151,21 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2015-05-08 00:09:07" + "time": "2015-05-15 13:33:16" }, { "name": "symfony/finder", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Finder", "source": { "type": "git", "url": "https://github.com/symfony/Finder.git", - "reference": "704c64c8b12c8882640d5c0330a8414b1e06dc99" + "reference": "ffedd3e0ff8155188155e9322fe21b9ee012ac14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Finder/zipball/704c64c8b12c8882640d5c0330a8414b1e06dc99", - "reference": "704c64c8b12c8882640d5c0330a8414b1e06dc99", + "url": "https://api.github.com/repos/symfony/Finder/zipball/ffedd3e0ff8155188155e9322fe21b9ee012ac14", + "reference": "ffedd3e0ff8155188155e9322fe21b9ee012ac14", "shasum": "" }, "require": { @@ -3101,21 +3201,21 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-15 13:32:45" }, { "name": "symfony/http-foundation", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/HttpFoundation", "source": { "type": "git", "url": "https://github.com/symfony/HttpFoundation.git", - "reference": "8a0d00980ef9f6b47ddbf24bdfbf70fead760816" + "reference": "f9b28dcc6d3e50f5568b42dda7292656a9fe8432" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/8a0d00980ef9f6b47ddbf24bdfbf70fead760816", - "reference": "8a0d00980ef9f6b47ddbf24bdfbf70fead760816", + "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/f9b28dcc6d3e50f5568b42dda7292656a9fe8432", + "reference": "f9b28dcc6d3e50f5568b42dda7292656a9fe8432", "shasum": "" }, "require": { @@ -3155,21 +3255,21 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-22 14:53:08" }, { "name": "symfony/http-kernel", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/HttpKernel", "source": { "type": "git", "url": "https://github.com/symfony/HttpKernel.git", - "reference": "2010194de0a57731af9404c7f97fd300db98b7a3" + "reference": "7c883eb1a5d8b52b1fa6d4134b82304c6bb7007f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/2010194de0a57731af9404c7f97fd300db98b7a3", - "reference": "2010194de0a57731af9404c7f97fd300db98b7a3", + "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/7c883eb1a5d8b52b1fa6d4134b82304c6bb7007f", + "reference": "7c883eb1a5d8b52b1fa6d4134b82304c6bb7007f", "shasum": "" }, "require": { @@ -3233,21 +3333,21 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2015-05-11 01:58:49" + "time": "2015-05-29 22:55:07" }, { "name": "symfony/process", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Process", "source": { "type": "git", "url": "https://github.com/symfony/Process.git", - "reference": "9f3c4baaf840ed849e1b1f7bfd5ae246e8509562" + "reference": "7856d78ab6cce6e59d02d9e1a873441f6bd21306" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Process/zipball/9f3c4baaf840ed849e1b1f7bfd5ae246e8509562", - "reference": "9f3c4baaf840ed849e1b1f7bfd5ae246e8509562", + "url": "https://api.github.com/repos/symfony/Process/zipball/7856d78ab6cce6e59d02d9e1a873441f6bd21306", + "reference": "7856d78ab6cce6e59d02d9e1a873441f6bd21306", "shasum": "" }, "require": { @@ -3283,21 +3383,21 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-15 13:32:45" }, { "name": "symfony/routing", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Routing", "source": { "type": "git", "url": "https://github.com/symfony/Routing.git", - "reference": "1455ec537940f7428ea6aa9411f3c4bca69413a0" + "reference": "dc9df18a1cfe87de65e270e8f01407ca6d7c39cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Routing/zipball/1455ec537940f7428ea6aa9411f3c4bca69413a0", - "reference": "1455ec537940f7428ea6aa9411f3c4bca69413a0", + "url": "https://api.github.com/repos/symfony/Routing/zipball/dc9df18a1cfe87de65e270e8f01407ca6d7c39cb", + "reference": "dc9df18a1cfe87de65e270e8f01407ca6d7c39cb", "shasum": "" }, "require": { @@ -3352,21 +3452,21 @@ "uri", "url" ], - "time": "2015-05-02 15:18:45" + "time": "2015-05-15 13:32:45" }, { "name": "symfony/security-core", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Security/Core", "source": { "type": "git", "url": "https://github.com/symfony/security-core.git", - "reference": "d25c17db741f58c0f615e52006a47f6fb23cd9b3" + "reference": "1ad0ee4b2a1ab32924cd0be397f0196b5d47e5d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security-core/zipball/d25c17db741f58c0f615e52006a47f6fb23cd9b3", - "reference": "d25c17db741f58c0f615e52006a47f6fb23cd9b3", + "url": "https://api.github.com/repos/symfony/security-core/zipball/1ad0ee4b2a1ab32924cd0be397f0196b5d47e5d0", + "reference": "1ad0ee4b2a1ab32924cd0be397f0196b5d47e5d0", "shasum": "" }, "require": { @@ -3405,32 +3505,32 @@ "MIT" ], "authors": [ - { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" - }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], "description": "Symfony Security Component - Core Library", - "homepage": "http://symfony.com", - "time": "2015-03-30 15:54:10" + "homepage": "https://symfony.com", + "time": "2015-05-15 13:53:19" }, { "name": "symfony/translation", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/Translation", "source": { "type": "git", "url": "https://github.com/symfony/Translation.git", - "reference": "398e0eedcb89243ad34a10d079a4b6ea4c0b61ff" + "reference": "89cdf3c43bc24c85dd8173dfcf5a979a95e5bd9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Translation/zipball/398e0eedcb89243ad34a10d079a4b6ea4c0b61ff", - "reference": "398e0eedcb89243ad34a10d079a4b6ea4c0b61ff", + "url": "https://api.github.com/repos/symfony/Translation/zipball/89cdf3c43bc24c85dd8173dfcf5a979a95e5bd9c", + "reference": "89cdf3c43bc24c85dd8173dfcf5a979a95e5bd9c", "shasum": "" }, "require": { @@ -3475,11 +3575,11 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2015-05-05 16:51:00" + "time": "2015-05-29 14:42:58" }, { "name": "symfony/var-dumper", - "version": "v2.6.7", + "version": "v2.6.9", "target-dir": "Symfony/Component/VarDumper", "source": { "type": "git", @@ -3539,16 +3639,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v1.1.0", + "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "732d2adb7d916c9593b9d58c3b0d9ebefead07aa" + "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/732d2adb7d916c9593b9d58c3b0d9ebefead07aa", - "reference": "732d2adb7d916c9593b9d58c3b0d9ebefead07aa", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa", + "reference": "0cac554ce06277e33ddf9f0b7ade4b8bbf2af3fa", "shasum": "" }, "require": { @@ -3558,11 +3658,6 @@ "phpunit/phpunit": "~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "psr-0": { "Dotenv": "src/" @@ -3586,7 +3681,7 @@ "env", "environment" ], - "time": "2014-12-05 15:19:21" + "time": "2015-05-30 15:59:26" } ], "packages-dev": [ @@ -3709,16 +3804,16 @@ }, { "name": "fzaninotto/faker", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "010c7efedd88bf31141a02719f51fb44c732d5a0" + "reference": "d0190b156bcca848d401fb80f31f504f37141c8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/010c7efedd88bf31141a02719f51fb44c732d5a0", - "reference": "010c7efedd88bf31141a02719f51fb44c732d5a0", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d", + "reference": "d0190b156bcca848d401fb80f31f504f37141c8d", "shasum": "" }, "require": { @@ -3728,14 +3823,18 @@ "phpunit/phpunit": "~4.0", "squizlabs/php_codesniffer": "~1.5" }, + "suggest": { + "ext-intl": "*" + }, "type": "library", "extra": { - "branch-alias": [] + "branch-alias": { + "dev-master": "1.5.x-dev" + } }, "autoload": { - "psr-0": { - "Faker": "src/", - "Faker\\PHPUnit": "test/" + "psr-4": { + "Faker\\": "src/Faker/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3753,7 +3852,7 @@ "faker", "fixtures" ], - "time": "2014-06-04 14:43:02" + "time": "2015-05-29 06:29:14" }, { "name": "laracasts/generators", @@ -3936,16 +4035,16 @@ }, { "name": "phpspec/phpspec", - "version": "2.2.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/phpspec/phpspec.git", - "reference": "9727d75919a00455433e867565bc022f0b985a39" + "reference": "e9a40577323e67f1de2e214abf32976a0352d8f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/phpspec/zipball/9727d75919a00455433e867565bc022f0b985a39", - "reference": "9727d75919a00455433e867565bc022f0b985a39", + "url": "https://api.github.com/repos/phpspec/phpspec/zipball/e9a40577323e67f1de2e214abf32976a0352d8f8", + "reference": "e9a40577323e67f1de2e214abf32976a0352d8f8", "shasum": "" }, "require": { @@ -4010,7 +4109,7 @@ "testing", "tests" ], - "time": "2015-04-18 16:22:51" + "time": "2015-05-30 15:21:40" }, { "name": "phpspec/prophecy", @@ -4074,16 +4173,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "2.0.16", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "934fd03eb6840508231a7f73eb8940cf32c3b66c" + "reference": "28a6b34e91d789b2608072ab3c82eaae7cdb973c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/934fd03eb6840508231a7f73eb8940cf32c3b66c", - "reference": "934fd03eb6840508231a7f73eb8940cf32c3b66c", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/28a6b34e91d789b2608072ab3c82eaae7cdb973c", + "reference": "28a6b34e91d789b2608072ab3c82eaae7cdb973c", "shasum": "" }, "require": { @@ -4106,7 +4205,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "2.1.x-dev" } }, "autoload": { @@ -4132,7 +4231,7 @@ "testing", "xunit" ], - "time": "2015-04-11 04:35:00" + "time": "2015-06-03 07:01:01" }, { "name": "phpunit/php-file-iterator", @@ -4320,16 +4419,16 @@ }, { "name": "phpunit/phpunit", - "version": "4.6.6", + "version": "4.6.10", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "3afe303d873a4d64c62ef84de491b97b006fbdac" + "reference": "7b5fe98b28302a8b25693b2298bca74463336975" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3afe303d873a4d64c62ef84de491b97b006fbdac", - "reference": "3afe303d873a4d64c62ef84de491b97b006fbdac", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7b5fe98b28302a8b25693b2298bca74463336975", + "reference": "7b5fe98b28302a8b25693b2298bca74463336975", "shasum": "" }, "require": { @@ -4388,20 +4487,20 @@ "testing", "xunit" ], - "time": "2015-04-29 15:18:52" + "time": "2015-06-03 05:03:30" }, { "name": "phpunit/phpunit-mock-objects", - "version": "2.3.1", + "version": "2.3.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", - "reference": "74ffb87f527f24616f72460e54b595f508dccb5c" + "reference": "253c005852591fd547fc18cd5b7b43a1ec82d8f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/74ffb87f527f24616f72460e54b595f508dccb5c", - "reference": "74ffb87f527f24616f72460e54b595f508dccb5c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/253c005852591fd547fc18cd5b7b43a1ec82d8f7", + "reference": "253c005852591fd547fc18cd5b7b43a1ec82d8f7", "shasum": "" }, "require": { @@ -4443,7 +4542,7 @@ "mock", "xunit" ], - "time": "2015-04-02 05:36:41" + "time": "2015-05-29 05:19:18" }, { "name": "sebastian/comparator", @@ -4818,21 +4917,20 @@ }, { "name": "symfony/class-loader", - "version": "v2.6.7", - "target-dir": "Symfony/Component/ClassLoader", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/symfony/ClassLoader.git", - "reference": "695134c9b39559297fa5d1dcff6a9054bb56facb" + "reference": "fa19598cb708b92d983b34aae313f57c217f9386" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/ClassLoader/zipball/695134c9b39559297fa5d1dcff6a9054bb56facb", - "reference": "695134c9b39559297fa5d1dcff6a9054bb56facb", + "url": "https://api.github.com/repos/symfony/ClassLoader/zipball/fa19598cb708b92d983b34aae313f57c217f9386", + "reference": "fa19598cb708b92d983b34aae313f57c217f9386", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.9" }, "require-dev": { "symfony/finder": "~2.0,>=2.0.5", @@ -4841,11 +4939,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { - "psr-0": { + "psr-4": { "Symfony\\Component\\ClassLoader\\": "" } }, @@ -4865,25 +4963,24 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-15 13:33:16" }, { "name": "symfony/yaml", - "version": "v2.6.7", - "target-dir": "Symfony/Component/Yaml", + "version": "v2.7.0", "source": { "type": "git", "url": "https://github.com/symfony/Yaml.git", - "reference": "f157ab074e453ecd4c0fa775f721f6e67a99d9e2" + "reference": "4a29a5248aed4fb45f626a7bbbd330291492f5c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Yaml/zipball/f157ab074e453ecd4c0fa775f721f6e67a99d9e2", - "reference": "f157ab074e453ecd4c0fa775f721f6e67a99d9e2", + "url": "https://api.github.com/repos/symfony/Yaml/zipball/4a29a5248aed4fb45f626a7bbbd330291492f5c3", + "reference": "4a29a5248aed4fb45f626a7bbbd330291492f5c3", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.9" }, "require-dev": { "symfony/phpunit-bridge": "~2.7" @@ -4891,11 +4988,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { - "psr-0": { + "psr-4": { "Symfony\\Component\\Yaml\\": "" } }, @@ -4915,10 +5012,16 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2015-05-02 15:18:45" + "time": "2015-05-02 15:21:08" } ], "aliases": [ + { + "alias": "dev-master", + "alias_normalized": "9999999-dev", + "version": "dev-develop", + "package": "dreamfactory/dsp-admin-app" + }, { "alias": "dev-master", "alias_normalized": "9999999-dev", @@ -4982,6 +5085,7 @@ ], "minimum-stability": "dev", "stability-flags": { + "dreamfactory/dsp-admin-app": 20, "dreamfactory/rave": 20, "dreamfactory/rave-aws": 20, "dreamfactory/rave-azure": 20,