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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: php-actions/phpunit@v4
name: phpunit
with:
php_extensions: xdebug mbstring xml iconv intl
php_extensions: xdebug mbstring xml iconv intl zip
php_version: ${{ env.PHP_VERSION }}
version: '10'
args: --coverage-text --testdox
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
/vendor/
###< symfony/framework-bundle ###

# Auto-generated by Symfony on cache warm
/config/reference.php

###> symfony/phpunit-bridge ###
.phpunit
.phpunit.result.cache
Expand All @@ -27,6 +30,8 @@ missing-mapping.csv
.phpunit.result.cache
###< phpunit/phpunit ###

.phpunit.cache

test_db.sqlite

public/Porteurs_CPS_CPF_202309011021.zip
Expand Down
4 changes: 3 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var');
->exclude('var')
// Auto-generated by Symfony; phpdoc_tag_type rewrites the documented JSON-LD "@type" key to "@var".
->notPath('config/reference.php');

return (new PhpCsFixer\Config())
->setRules([
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"doctrine/doctrine-fixtures-bundle": "^3.4",
"friendsofphp/php-cs-fixer": "^3.13",
"liip/functional-test-bundle": "^4.5",
"liip/test-fixtures-bundle": "^2",
"liip/test-fixtures-bundle": "^3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.0",
Expand Down
Loading
Loading