Skip to content
Open
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
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: CI

on: [ push, pull_request ]
on: [push, pull_request]

env:
php_version: '8.2'
php_version: "8.5"

jobs:

unit:
name: "Unit tests"
runs-on: ubuntu-22.04
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@ js_dist
drivers
chromedriver.log
/htdocs/dist
app/config/reference.php
2,025 changes: 2,025 additions & 0 deletions app/config/reference.php
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Il faut aussi l'enlever du .gitignore du coup : https://github.com/afup/web/blob/master/.gitignore#L58

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion behat.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Afup\Tests\Behat\Bootstrap\FeatureContext;
use Behat\Config\Config;
use Behat\Config\Extension;
Expand Down Expand Up @@ -63,7 +65,7 @@
(new Suite('web_features_no_js'))
->withContexts(
FeatureContext::class,
MinkContext::class
MinkContext::class,
)
->withPaths('%paths.base%/tests/behat')
->withFilter(new TagFilter('~@javascript-group&&~@javascript'))
Expand Down
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Main repository for afup website",
"type": "project",
"require": {
"php": ">=8.2",
"php": ">=8.5",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
Expand Down Expand Up @@ -52,6 +52,7 @@
"symfony/form": "7.4.*",
"symfony/framework-bundle": "7.4.*",
"symfony/http-client": "7.4.*",
"symfony/http-foundation": "7.4.*",
"symfony/http-kernel": "7.4.*",
"symfony/intl": "7.4.*",
"symfony/lock": "7.4.*",
Expand Down Expand Up @@ -165,7 +166,7 @@
"phpunit/phpunit": "11.*",
"rector/rector": "^2.0",
"robertfausk/behat-panther-extension": "^1.2",
"smalot/pdfparser": "^1.0",
"smalot/pdfparser": "2.*",
"symfony/debug-bundle": "7.4.*",
"symfony/json-path": "7.4.*",
"symfony/web-profiler-bundle": "7.4.*",
Expand Down Expand Up @@ -232,6 +233,9 @@
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*",
"symfony/polyfill-php85": "*"
}
}
Loading
Loading