diff options
author | Marvin Borner | 2018-05-23 22:23:28 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-23 22:23:28 +0200 |
commit | b66a61addb6c8e66cb26fcf74b532d68891267e4 (patch) | |
tree | 05e9449ff25bdc98f68105f41923ccb9f6ef5095 /main/app/sprinkles/core/composer.json | |
parent | 1d4ef435177a5f9b6d1a289800d933e49be0c550 (diff) |
Refactored code, many fixes and improvements in chat backend+frontend
Diffstat (limited to 'main/app/sprinkles/core/composer.json')
-rw-r--r-- | main/app/sprinkles/core/composer.json | 86 |
1 files changed, 45 insertions, 41 deletions
diff --git a/main/app/sprinkles/core/composer.json b/main/app/sprinkles/core/composer.json index f94c486..017e56b 100644 --- a/main/app/sprinkles/core/composer.json +++ b/main/app/sprinkles/core/composer.json @@ -1,44 +1,48 @@ { - "name": "userfrosting/sprinkle-core", - "type": "userfrosting-sprinkle", - "description": "Core module for UserFrosting.", - "keywords": ["php user management", "usercake", "bootstrap"], - "homepage": "https://github.com/userfrosting/UserFrosting", - "license" : "MIT", - "authors" : [ - { - "name": "Alexander Weissman", - "homepage": "https://alexanderweissman.com" - } - ], - "require": { - "doctrine/dbal": "^2.5", - "filp/whoops": "^2.1", - "illuminate/cache": "5.4.*", - "illuminate/database": "5.4.*", - "illuminate/events": "5.4.*", - "illuminate/filesystem": "5.4.*", - "league/csv": "^8.1", - "monolog/monolog": "^1", - "phpmailer/phpmailer": "5.2.10", - "rockettheme/toolbox": "1.3.1", - "slim/csrf": "^0.8", - "slim/slim": "^3", - "slim/twig-view": "^1.2", - "symfony/http-foundation": "*", - "twig/twig": "^1.18", - "userfrosting/assets": "~4.1.0", - "userfrosting/config": "~4.1.0", - "userfrosting/cache": "~4.1.0", - "userfrosting/fortress": "~4.1.1", - "userfrosting/i18n": "~4.1.0", - "userfrosting/session": "~4.1.0", - "userfrosting/support": "~4.1.1", - "vlucas/phpdotenv": "^2" - }, - "autoload": { - "psr-4": { - "UserFrosting\\Sprinkle\\Core\\": "src/" - } + "name": "userfrosting/sprinkle-core", + "type": "userfrosting-sprinkle", + "description": "Core module for UserFrosting.", + "keywords": [ + "php user management", + "usercake", + "bootstrap" + ], + "homepage": "https://github.com/userfrosting/UserFrosting", + "license": "MIT", + "authors": [ + { + "name": "Alexander Weissman", + "homepage": "https://alexanderweissman.com" } + ], + "require": { + "doctrine/dbal": "^2.5", + "filp/whoops": "^2.1", + "illuminate/cache": "5.4.*", + "illuminate/database": "5.4.*", + "illuminate/events": "5.4.*", + "illuminate/filesystem": "5.4.*", + "league/csv": "^8.1", + "monolog/monolog": "^1", + "phpmailer/phpmailer": "5.2.10", + "rockettheme/toolbox": "1.3.1", + "slim/csrf": "^0.8", + "slim/slim": "^3", + "slim/twig-view": "^1.2", + "symfony/http-foundation": "*", + "twig/twig": "^1.18", + "userfrosting/assets": "~4.1.0", + "userfrosting/config": "~4.1.0", + "userfrosting/cache": "~4.1.0", + "userfrosting/fortress": "~4.1.1", + "userfrosting/i18n": "~4.1.0", + "userfrosting/session": "~4.1.0", + "userfrosting/support": "~4.1.1", + "vlucas/phpdotenv": "^2" + }, + "autoload": { + "psr-4": { + "UserFrosting\\Sprinkle\\Core\\": "src/" + } + } } |