From 1a4440a99f238f6f8ff628ef780701cbad28cca8 Mon Sep 17 00:00:00 2001 From: Jose Pabl Domingo Aramburo Sanchez Date: Sun, 5 Aug 2018 20:11:33 -0600 Subject: [PATCH] [add] Applications added to auto load --- api-payroll/composer.json | 3 ++- api-payroll/composer.lock | 16 ++++++++-------- .../src/application/SessionApplication.php | 1 + api-payroll/src/dependencies.php | 3 +-- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/api-payroll/composer.json b/api-payroll/composer.json index 5cf1229..86aff1a 100644 --- a/api-payroll/composer.json +++ b/api-payroll/composer.json @@ -27,7 +27,8 @@ }, "autoload": { "psr-4": { - "App\\Service\\": "src/service" + "App\\Service\\": "src/service", + "App\\Application\\": "src/application" } }, "config": { diff --git a/api-payroll/composer.lock b/api-payroll/composer.lock index 5f86c70..6a094c8 100644 --- a/api-payroll/composer.lock +++ b/api-payroll/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "0057ecef520d7a1c12ceed653a4a5b2a", + "hash": "9f4397e11cb2603e7754216c4f59c7ad", "content-hash": "5e16cb7781829836a704bd8767830833", "packages": [ { @@ -733,16 +733,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.7.6", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712" + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712", - "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", "shasum": "" }, "require": { @@ -754,12 +754,12 @@ }, "require-dev": { "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -792,7 +792,7 @@ "spy", "stub" ], - "time": "2018-04-18 13:57:24" + "time": "2018-08-05 17:53:17" }, { "name": "phpunit/php-code-coverage", diff --git a/api-payroll/src/application/SessionApplication.php b/api-payroll/src/application/SessionApplication.php index 204bbac..b7091e0 100644 --- a/api-payroll/src/application/SessionApplication.php +++ b/api-payroll/src/application/SessionApplication.php @@ -1,4 +1,5 @@