.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 & PHP
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/ /vendor/
###< symfony/framework-bundle ### /var/
/.env.local
###> phpunit/phpunit ### .env.*.local
.env.test
.env.test.local
/phpunit.xml /phpunit.xml
.phpunit.result.cache /phpunit.xml.dist
###< phpunit/phpunit ### /.phpunit.result.cache
###> symfony/phpunit-bridge ### # Cache & logs
.phpunit.result.cache /var/cache/
/phpunit.xml /var/log/
###< symfony/phpunit-bridge ### /var/data/
###> symfony/asset-mapper ### # IDEs
/public/assets/ /.idea/
/assets/vendor/ /*.sublime-project
###< symfony/asset-mapper ### /*.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"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" packagePrefix="App\" /> <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\" /> <sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" packagePrefix="App\Tests\" />
<excludeFolder url="file://$MODULE_DIR$/vendor/composer" /> <excludeFolder url="file://$MODULE_DIR$/vendor/composer" />
<excludeFolder url="file://$MODULE_DIR$/vendor/doctrine/cache" /> <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 (
),
),
);