Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/deploy-to-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
tar -xf ${{ env.deployfile }}
chcon -t httpd_user_rw_content_t -R ${{ env.remote_folder}}.${{ env.now }}
cd ${{ env.remote_folder}}.${{ env.now }}
php81 composer.phar install --optimize-autoloader --no-dev
php81 artisan optimize:clear
php81 artisan config:cache
php81 artisan route:cache
php81 artisan view:cache
php81 artisan migrate --force --no-interaction
php83 composer.phar install --optimize-autoloader --no-dev
php83 artisan optimize:clear
php83 artisan config:cache
php83 artisan route:cache
php83 artisan view:cache
php83 artisan migrate --force --no-interaction
cd ${{ env.remote_path }}
unlink ${{ env.remote_folder }}
ln -s ${{ env.remote_folder }}.${{ env.now }} ${{ env.remote_folder }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/deploy-to-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ jobs:
tar -xf ${{ env.deployfile }}
chcon -t httpd_user_rw_content_t -R ${{ env.remote_folder}}.${{ env.now }}
cd ${{ env.remote_folder}}.${{ env.now }}
php81 composer.phar install --optimize-autoloader --no-dev
php81 artisan optimize:clear
php81 artisan config:cache
php81 artisan route:cache
php81 artisan view:cache
php81 artisan migrate --force --no-interaction
php83 composer.phar install --optimize-autoloader --no-dev
php83 artisan optimize:clear
php83 artisan config:cache
php83 artisan route:cache
php83 artisan view:cache
php83 artisan migrate --force --no-interaction
cd ${{ env.remote_path }}
unlink ${{ env.remote_folder }}
ln -s ${{ env.remote_folder }}.${{ env.now }} ${{ env.remote_folder }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
php_apache:
image: scto-php:8.1
image: scto-php:8.3
container_name: tp_api_v2
volumes:
- ./src/:/var/www/html/
Expand All @@ -15,7 +15,7 @@ services:
- tp_backend

queue:
image: scto-php:8.1
image: scto-php:8.3
container_name: tp_api_v2_queue
working_dir: /var/www/html
command: ["php", "/var/www/html/artisan", "schedule:work"]
Expand Down
16 changes: 6 additions & 10 deletions src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,20 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.1.0",
"doctrine/dbal": "^3.9",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^10.0",
"laravel/tinker": "^2.5",
"php": "^8.3",
"laravel/framework": "^13.0",
"league/csv": "^9.28",
"maennchen/zipstream-php": "^3.1",
"nesbot/carbon": "^2.72",
"nesbot/carbon": "^3.8",
"solarium/solarium": "^6.3",
"symfony/yaml": "^6.4"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^2.1",
"laravel/pint": "^1.1",
"laravel/telescope": "^5.5",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0"
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading