Latest composer file

Update composer file so Attendize works with Laravel 5.6
This commit is contained in:
Jeremy Quinton 2018-08-17 10:22:53 +02:00
parent 7404c4701a
commit e45fe77568
1 changed files with 42 additions and 46 deletions

View File

@ -6,43 +6,41 @@
"type": "project",
"homepage" : "https://www.attendize.com",
"require": {
"laravel/framework": "5.2.*",
"laravelcollective/html": "~5.0",
"milon/barcode": "dev-master",
"iron-io/iron_mq": "2.*",
"intervention/image": "dev-master",
"nitmedia/wkhtml2pdf": "dev-master",
"maatwebsite/excel": "~2.0.0",
"dompdf/dompdf": "dev-master",
"laravel/socialite": "~2.0",
"filp/whoops": "~1.0",
"vinelab/http": "dev-master",
"mews/purifier": "~2.0",
"league/flysystem-aws-s3-v3" : "~1.0",
"maxhoffmann/parsedown-laravel": "dev-master",
"omnipay/common": "~2.3",
"omnipay/stripe": "*",
"omnipay/paypal": "*",
"omnipay/bitpay": "dev-master",
"omnipay/coinbase": "dev-master",
"omnipay/dummy": "~2.2",
"laracasts/utilities": "^2.1",
"predis/predis": "~1.0",
"guzzlehttp/guzzle": "^6.2",
"omnipay/migs": "^2.1",
"mcamara/laravel-localization": "^1.2",
"potsky/laravel-localization-helpers": "2.3.*",
"doctrine/dbal": "~2.3",
"barryvdh/laravel-ide-helper": "^2.4"
"barryvdh/laravel-ide-helper": "~2.4",
"doctrine/dbal": "~2.3",
"dompdf/dompdf": "~0.8",
"filp/whoops": "~2.2",
"guzzlehttp/guzzle": "6",
"guzzlehttp/psr7": "1.4",
"illuminate/support": "~5.6",
"intervention/image": "~2.4",
"laracasts/utilities": "~2.1",
"laravel/framework": "~5.6",
"laravel/socialite": "~3.0",
"laravelcollective/html": "~5.6",
"league/flysystem-aws-s3-v3" : "~1.0",
"maatwebsite/excel": "~2.1",
"maxhoffmann/parsedown-laravel": "dev-master",
"mcamara/laravel-localization": "~1.2",
"mews/purifier": "~2.0",
"milon/barcode": "~5.3",
"nitmedia/wkhtml2pdf": "dev-master",
"omnipay/common": "~3",
"omnipay/dummy": "~3",
"omnipay/paypal": "~3",
"omnipay/stripe": "~3",
"php-http/curl-client": "^1.7",
"php-http/message": "^1.6",
"predis/predis": "~1.1",
"vinelab/http": "~1.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"fzaninotto/faker": "^1.5",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0"
"phpunit/phpunit": "7.3.*",
"phpspec/phpspec": "5.0.*",
"fzaninotto/faker": "1.8.*",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0"
},
"autoload": {
"classmap": [
"database",
@ -61,18 +59,16 @@
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
"post-install-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"