diff --git a/composer.json b/composer.json index a2d06da..974907c 100644 --- a/composer.json +++ b/composer.json @@ -1,67 +1,67 @@ { "name": "nasqueron/notifications", "description": "Nasqueron notifications center", "keywords": [ "nasqueron", "activemq", "AMQP", "notifications" ], "license": "BSD-2-Clause", "type": "project", "require": { "php": ">=8.1.0", - "laravel/framework": "8.*", - "guzzlehttp/guzzle": "^6.2", - "keruald/dockerhub": "^0.0.3", + "laravel/framework": "^9.30.0", + "guzzlehttp/guzzle": "7.5.0", + "keruald/dockerhub": "^0.1.0", "keruald/github": "^0.2.1", "keruald/broker": "^0.4.1", - "keruald/mailgun": "^0.0.1", + "keruald/mailgun": "^0.1.0", "netresearch/jsonmapper": "^1.1.1", "sentry/sentry": "^0.13.0" }, "require-dev": { "fzaninotto/faker": "~1.4", "laravel/browser-kit-testing": "^v6.3.0", "mockery/mockery": "^1.5.0", "nasqueron/codestyle": "^0.1.0", "pdepend/pdepend": "^2.10", "phan/phan": "^5.3", "sebastian/phpcpd": "6.0.3", "phploc/phploc": "7.0.2", "phpmd/phpmd": "^2.12", "phpspec/phpspec": "^7.2", "phpunit/phpunit": "^9.5.20", - "rector/rector": "^0.12.21", + "rector/rector": "^0.14.2", "squizlabs/php_codesniffer": "^3.6", "symfony/css-selector": "^6.0", "symfony/dom-crawler": "^6.0" }, "autoload": { "psr-4": { "Nasqueron\\Notifications\\": "app/", "Nasqueron\\Notifications\\Tests\\": "tests/" } }, "scripts": { "post-root-package-install": [ "php -r \"copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ "php artisan key:generate" ], "phpmd": [ "vendor/bin/phpmd app/ xml ruleset.xml" ], "test": [ "phpunit --no-coverage" ] }, "config": { "preferred-install": "dist", "allow-plugins": { "kylekatarnls/update-helper": true } } } diff --git a/tests/Console/Commands/InspireTest.php b/tests/Console/Commands/InspireTest.php index 04150c5..392fcc9 100644 --- a/tests/Console/Commands/InspireTest.php +++ b/tests/Console/Commands/InspireTest.php @@ -1,18 +1,18 @@ tester->execute(['command' => $this->command->getName()]); - $this->assertRegexpInDisplay('/\n.*-.*\n/'); + $this->assertRegexpInDisplay('/\n.*—.*\n/'); } }