.gitignore propre

This commit is contained in:
sermandm 2025-04-11 15:13:14 +02:00
parent 39c6623e3d
commit 225b58a0c9
5 changed files with 125 additions and 21 deletions

86
.gitignore vendored
View File

@ -1,25 +1,69 @@
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
# Symfony & PHP
/vendor/
###< symfony/framework-bundle ###
###> phpunit/phpunit ###
/var/
/.env.local
.env.*.local
.env.test
.env.test.local
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
/phpunit.xml.dist
/.phpunit.result.cache
###> symfony/phpunit-bridge ###
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###
# Cache & logs
/var/cache/
/var/log/
/var/data/
###> symfony/asset-mapper ###
/public/assets/
/assets/vendor/
###< symfony/asset-mapper ###
# IDEs
/.idea/
/*.sublime-project
/*.sublime-workspace
/.vscode/
/*.code-workspace
# OS files
.DS_Store
Thumbs.db
# Composer
/composer.lock
# Symfony Encore / Webpack / Assets
/node_modules/
/public/build/
/public/bundles/
/assets/build/
# PHPUnit
.phpunit.result.cache
.phpunit.cache/
# Coverage reports
coverage/
# PHPMD, PHP-CS-Fixer, PHPStan, Psalm
.php_cs.cache
.php-cs-fixer.cache
phpstan-result.cache
psalm.xml
psalm.cache
# Docker
/docker-compose.override.yml
.docker/
# Misc
*.log
*.cache
*.swp
*.bak
*.tmp
*.orig
# Database
*.sqlite
*.sqlite3
/data/*.sqlite
# Translations
/translations/*.catalogue.php

View File

@ -3,6 +3,7 @@
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" packagePrefix="App\" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" packagePrefix="App\Tests\" />
<excludeFolder url="file://$MODULE_DIR$/vendor/composer" />
<excludeFolder url="file://$MODULE_DIR$/vendor/doctrine/cache" />

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

22
assets/vendor/installed.php vendored Normal file
View File

@ -0,0 +1,22 @@
<?php return array (
'@hotwired/stimulus' =>
array (
'version' => '3.2.2',
'dependencies' =>
array (
),
'extraFiles' =>
array (
),
),
'@hotwired/turbo' =>
array (
'version' => '7.3.0',
'dependencies' =>
array (
),
'extraFiles' =>
array (
),
),
);