Skip to content

Commit

Permalink
Merge pull request #139 from RonasIT/feat/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
DenTray authored Aug 22, 2024
2 parents 75d8f68 + 0901c01 commit b967de5
Show file tree
Hide file tree
Showing 47 changed files with 1,880 additions and 1,857 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down
5 changes: 0 additions & 5 deletions Dockerfile

This file was deleted.

4 changes: 1 addition & 3 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@
realpath(__DIR__.'/../')
);

$env = $app->detectEnvironment(function()
{
$env = $app->detectEnvironment(function () {
return getenv('APP_ENV') ?: 'local';
});
$fn = ".env.{$env}";

$app->loadEnvironmentFrom(file_exists(base_path($fn)) ? $fn : '.env');


return $app;
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
}
],
"require": {
"php": ">=8.1",
"laravel/framework": ">=10.48",
"guzzlehttp/guzzle": ">=6.0",
"maatwebsite/excel": "3.*",
"tecnickcom/tcpdf": "~6.7.4",
"php": ">=8.3",
"laravel/framework": "^11.20",
"guzzlehttp/guzzle": "^7.9.2",
"maatwebsite/excel": "^3.1.55",
"tecnickcom/tcpdf": "^6.7.5",
"ext-json": "*",
"php-mock/php-mock-phpunit": "^2.9"
"php-mock/php-mock-phpunit": "^2.10"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"mockery/mockery": "1.*",
"phpunit/phpunit": "9.*",
"php-coveralls/php-coveralls": "^2.5",
"orchestra/testbench": "^8.23",
"mpyw/laravel-database-mock": "0.0.1-alpha5",
"friendsofphp/php-cs-fixer": "^3.59",
"fakerphp/faker": "^1.23.1",
"mockery/mockery": "^1.6.12",
"phpunit/phpunit": "^10.5.30",
"php-coveralls/php-coveralls": "^2.7",
"orchestra/testbench": "^9.3",
"mpyw/laravel-database-mock": "^0.0.1-alpha5",
"friendsofphp/php-cs-fixer": "^3.62",
"brainmaestro/composer-git-hooks": "^3.0"
},
"autoload": {
Expand Down
Loading

0 comments on commit b967de5

Please sign in to comment.