Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez committed Dec 7, 2023
1 parent 7b6f6d7 commit ef92677
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 163 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/symfony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: CI
on:
push:
branches:
- '6.0'
- '6.1'
pull_request:
branches:
- '6.0'
- '6.1'

env:
APP_ENV: test

jobs:
symfony:
name: Symfony 5.4 (PHP ${{ matrix.php-versions }})
name: Symfony 6.1 (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php-versions: ['8.0', '8.1']
php-versions: ['8.1', '8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/doctrine-bundle": "2.6",
"sensio/framework-extra-bundle": "^6.2",
"symfony/apache-pack": "^1.0",
"symfony/cache": "5.4.*",
"symfony/console": "6.1.*",
"symfony/dotenv": "6.1.*",
"symfony/flex": "^2.1",
"symfony/form": "6.1.*",
"symfony/framework-bundle": "6.1.*",
"symfony/mailer": "6.1.*",
"symfony/monolog-bundle": "^3.7",
"symfony/monolog-bundle": "^3.10",
"symfony/runtime": "6.1.*",
"symfony/security-bundle": "6.1.*",
"symfony/translation": "6.1.*",
Expand Down
168 changes: 47 additions & 121 deletions composer.lock

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

3 changes: 1 addition & 2 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
];
12 changes: 0 additions & 12 deletions config/packages/sensio_framework_extra.php

This file was deleted.

2 changes: 1 addition & 1 deletion public/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DirectoryIndex index.php
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ %{ENV:BASE}/index.php [L]
RewriteRule ^(.*)$ %{ENV:BASE}/index.php [QSA,L]
</IfModule>

<IfModule !mod_rewrite.c>
Expand Down
Loading

0 comments on commit ef92677

Please sign in to comment.