Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
73ae94c
add file .Ds_store
ericlouz Feb 17, 2025
4f8dc41
phpoffice/phpspreadshee
ericlouz Feb 17, 2025
fa05a8c
creation des fonctions pour la lecture et gestions de donnees excel
ericlouz Feb 18, 2025
3f0c7ed
save themes on themes.json file
ericlouz Feb 19, 2025
33598d3
fix code
ericlouz Feb 19, 2025
9dc1744
update composer and fix code IngestTheme
ericlouz Feb 19, 2025
02db447
Modify the parentId property in the Theme entity and change its type …
ericlouz Feb 20, 2025
52b7f22
run testSaveImportedThemes on dataBase
ericlouz Feb 20, 2025
85ec700
Import completed and theme saved to the database.
ericlouz Feb 20, 2025
e0253af
prepare theme for saving database
magrigsdev Feb 20, 2025
8fc9f03
it works ingest theme command
magrigsdev Feb 21, 2025
644a987
The test works correctly for the first theme added to the database.
magrigsdev Feb 21, 2025
ec90a56
Some changes in the naming of directories and functions
magrigsdev Feb 21, 2025
31770ed
Shell imports has successfully completed.
magrigsdev Feb 25, 2025
6f25a44
resolve all bug
magrigsdev Feb 27, 2025
e7d3647
Several functions in extraService.php have been modified and improved.
magrigsdev Mar 3, 2025
ec167aa
The isFirstThemeParentIdNull test completed successfully
magrigsdev Mar 3, 2025
e91cd7d
The test was completed successfully, and the parentId for all themes …
magrigsdev Mar 3, 2025
6fed003
The CommandExtractService command was completed successfully.
magrigsdev Mar 3, 2025
9a9a964
The migration Version20250116221307 has been successfully added.
magrigsdev Mar 4, 2025
2310e5e
entity theme modify code by name
magrigsdev Mar 6, 2025
2efe854
creation migrations/Version20250306062918.php
magrigsdev Mar 6, 2025
612b04a
Every occurrence of 'code' has been replaced with 'name' in the Extra…
magrigsdev Mar 6, 2025
75775b4
Every occurrence of 'code' has been replaced with 'name' in the Theme…
magrigsdev Mar 6, 2025
ebcb682
Remove unused code
unflores Mar 6, 2025
f4be30b
Remove unused parameter
unflores Mar 6, 2025
6b229be
Remove non-needed functions for theme processing
unflores Mar 6, 2025
3b35115
Add ability to upsert themes
unflores Mar 6, 2025
0b5a359
Remove xlsx de repo
unflores Mar 6, 2025
ab97ee9
Update code to use built in repo methods
unflores Mar 6, 2025
7091bc6
Update names of array keys
unflores Mar 6, 2025
ad25c1b
Add gd extension for ci
unflores Mar 6, 2025
ad7bdfa
Add another lib
unflores Mar 6, 2025
f0eeb49
Remove prefix from extension
unflores Mar 6, 2025
5e489cc
Fix linter
unflores Mar 10, 2025
3949ed4
Add test file
unflores Mar 10, 2025
1229fd8
Add comment
unflores Mar 10, 2025
870798b
Update themes location
unflores Mar 10, 2025
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
1 change: 0 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
APP_SECRET=

DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"

1 change: 1 addition & 0 deletions .github/workflows/pre-merge-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
uses: php-actions/composer@v6
with:
php_version: 8.2
php_extensions: gd zip

# Fix permissions before composer operations
# If not some composer operations that need to update autoloader files will fail
Expand Down
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/var/*
!/var/import-data/.gitkeep
/vendor/
###< symfony/framework-bundle ###

Expand All @@ -25,9 +26,13 @@
###< phpunit/phpunit ###
phpunit.xml.old

script_memoire.txt
.phpunit.cache
###> symfony/asset-mapper ###
/public/assets/
/assets/vendor/
###< symfony/asset-mapper ###

public/File/emissions_GES_structure.xlsx



1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"doctrine/doctrine-bundle": "^2.13",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.3",
"phpoffice/phpspreadsheet": "^4.0",
"symfony/asset": "7.2.*",
"symfony/console": "7.2.*",
"symfony/dotenv": "7.2.*",
Expand Down
Loading