Nouveau .gitignore

This commit is contained in:
BRUNET Giovanny 2025-04-11 14:59:35 +02:00
parent b7773bd06d
commit b29391d655
6 changed files with 127 additions and 23 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" />

4
.idea/dataSources.xml generated
View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="DataSourceManagerImpl" format="xml" multifile-model="true"> <component name="DataSourceManagerImpl" format="xml" multifile-model="true">
<data-source source="LOCAL" name="HegreEtConfort@localhost" uuid="21423ae4-3232-4641-affb-06399f70655a"> <data-source source="LOCAL" name="HegreEtConfort@172.20.96.1" uuid="21423ae4-3232-4641-affb-06399f70655a">
<driver-ref>postgresql</driver-ref> <driver-ref>postgresql</driver-ref>
<synchronize>true</synchronize> <synchronize>true</synchronize>
<jdbc-driver>org.postgresql.Driver</jdbc-driver> <jdbc-driver>org.postgresql.Driver</jdbc-driver>
<jdbc-url>jdbc:postgresql://localhost:5433/HegreEtConfort</jdbc-url> <jdbc-url>jdbc:postgresql://172.20.96.1:5432/HegreEtConfort</jdbc-url>
<working-dir>$ProjectFileDir$</working-dir> <working-dir>$ProjectFileDir$</working-dir>
</data-source> </data-source>
</component> </component>

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 (
),
),
);