Skip to content

Commit

Permalink
chore(dev): Composer update
Browse files Browse the repository at this point in the history
  • Loading branch information
leocavalcante committed Aug 15, 2023
1 parent e882e93 commit 7edee76
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 34 deletions.
49 changes: 19 additions & 30 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "hyperf/hyperf-skeleton",
"name": "opencodeco/rinha-de-backend",
"type": "project",
"keywords": [
"php",
Expand All @@ -9,47 +9,39 @@
"microservice",
"middleware"
],
"description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
"license": "Apache-2.0",
"description": "Swoole e Hyperf na Rinha de Back-end.",
"license": "MIT",
"require": {
"php": ">=8.0",
"hyperf/cache": "~3.0.0",
"hyperf/command": "~3.0.0",
"hyperf/config": "~3.0.0",
"hyperf/db-connection": "~3.0.0",
"hyperf/framework": "~3.0.0",
"hyperf/guzzle": "~3.0.0",
"hyperf/http-server": "~3.0.0",
"hyperf/logger": "~3.0.0",
"hyperf/memory": "~3.0.0",
"hyperf/process": "~3.0.0",
"hyperf/database": "~3.0.0",
"hyperf/redis": "~3.0.0"
"hyperf/cache": "^3.0",
"hyperf/command": "^3.0",
"hyperf/config": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/framework": "^3.0",
"hyperf/guzzle": "^3.0",
"hyperf/http-server": "^3.0",
"hyperf/logger": "^3.0",
"hyperf/memory": "^3.0",
"hyperf/process": "^3.0",
"hyperf/database": "^3.0",
"hyperf/redis": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/devtool": "~3.0.0",
"hyperf/testing": "~3.0.0",
"hyperf/devtool": "^3.0",
"hyperf/testing": "^3.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"ext-openssl": "Required to use HTTPS.",
"ext-json": "Required to use JSON.",
"ext-pdo": "Required to use MySQL Client.",
"ext-pdo_mysql": "Required to use MySQL Client.",
"ext-redis": "Required to use Redis Client."
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": []
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "./test/"
"Test\\": "test/"
}
},
"minimum-stability": "dev",
Expand All @@ -60,9 +52,6 @@
},
"extra": [],
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-autoload-dump": [
"rm -rf runtime/container"
],
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test/Cases/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
* @license https://github.com/opencodeco/rinha-de-backend-2023-q3/blob/dev/LICENSE
*/

namespace HyperfTest\Cases;
namespace Test\Cases;

use HyperfTest\HttpTestCase;
use Test\HttpTestCase;

/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion test/HttpTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @license https://github.com/opencodeco/rinha-de-backend-2023-q3/blob/dev/LICENSE
*/

namespace HyperfTest;
namespace Test;

use Hyperf\Testing\Client;
use PHPUnit\Framework\TestCase;
Expand Down

0 comments on commit 7edee76

Please sign in to comment.