Skip to content

Commit

Permalink
Merge pull request #621 from cayacdev/feat/upgrade-backend
Browse files Browse the repository at this point in the history
update_dependencies
  • Loading branch information
cayacdev authored Apr 2, 2023
2 parents 90302ed + d9cfeb5 commit 99ef388
Show file tree
Hide file tree
Showing 31 changed files with 10,178 additions and 19,930 deletions.
17 changes: 0 additions & 17 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/backend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.2'
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
DOMAIN: ${{ secrets.BACKEND_DOMAIN }}
run: |
echo "export const environment = { production: true, backendDomain: '${DOMAIN}',};" > src/environments/environment.prod.ts
- name: Use Node 14.x
- name: Use Node 18.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [ 14.x ]
node-version: [ 18.x ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Homestead.json
Homestead.yaml
.env
.phpunit.result.cache
.phpunit.cache
_ide_helper.php
.phpstorm.meta.php
coverage/
coverage.xml
.phpunit.result.cache
14 changes: 7 additions & 7 deletions backend/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4",
"laravel/lumen-framework": "^8.0",
"tymon/jwt-auth": "^1.0"
"php": "^8.0",
"laravel/lumen-framework": "^v10.0.0",
"tymon/jwt-auth": "2.0.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^v2.12.3",
"fakerphp/faker": "^1.15",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^9.5.6"
"barryvdh/laravel-ide-helper": "^v2.13.0",
"fakerphp/faker": "^v1.21.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10.0.19"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 99ef388

Please sign in to comment.