Compare commits

...

15 Commits

Author SHA1 Message Date
08bf5f9922 [person duplicate] fix direction in page confirm 2021-09-09 16:53:48 +02:00
c32ba2bee4 import duplication from 2.0 branch 2021-08-27 15:24:51 +02:00
fe54c76317 allow DateTimeImmutable on getLastAddress 2021-07-03 09:39:59 +02:00
d5d69bbb86 modificaiton label 'déménagement' => 'nouvelle adresse' 2021-05-28 10:08:48 +02:00
858283134f fix paths in assets 2021-04-30 13:57:50 +02:00
d0066e3270 Add a button "move to another address" on person details
The button "edit address" alone was confusing: users thought they were
registering a new address, but they were updating the current address.

A second button is add for action "move to another address".

/!\ Needs merge to 2.0 branch
2021-04-30 13:10:25 +02:00
3d94647352 fix return type in Person 2021-04-30 00:02:06 +02:00
Pol Dellaiera
ca64c1e011 Remove unrelated code style change. 2021-04-29 23:56:17 +02:00
Pol Dellaiera
21320685b7 Do not use DateTimeImmutable. 2021-04-29 23:56:06 +02:00
Pol Dellaiera
55d963641e tests: Add missing test based on review's feedback. 2021-04-29 23:55:43 +02:00
Pol Dellaiera
c73e497d94 Update Person::getLastAddress() based on feedback. 2021-04-29 23:55:28 +02:00
25d83a0d40 writing test to reproduce bug 2021-04-29 23:55:00 +02:00
7bc20f653f add deps to async uploader bundle 2021-04-29 23:35:27 +02:00
2c8125166b composer.json for branch 1.5 2021-04-29 18:15:05 +02:00
1dbf3b0184 fix directory structure for branch 1.5 & bundle ChillMain 2021-04-29 18:12:54 +02:00
744 changed files with 1177 additions and 73 deletions

76
composer.json Normal file
View File

@@ -0,0 +1,76 @@
{
"name": "chill-project/chill-bundles",
"license": "AGPL-3.0-only",
"type": "library",
"description": "Most used bundles for chill-project",
"keywords": ["chill", "social worker"],
"autoload": {
"psr-4": {
"Chill\\ActivityBundle\\": "src/Bundle/ChillActivityBundle",
"Chill\\BudgetBundle\\": "src/Bundle/ChillBudgetBundle",
"Chill\\CustomFieldsBundle\\": "src/Bundle/ChillCustomFieldsBundle",
"Chill\\DocStoreBundle\\": "src/Bundle/ChillDocStoreBundle",
"Chill\\EventBundle\\": "src/Bundle/ChillEventBundle",
"Chill\\FamilyMemberBundle\\": "src/Bundle/ChillFamilyMemberBundle",
"Chill\\MainBundle\\": "src/Bundle/ChillMainBundle",
"Chill\\PersonBundle\\": "src/Bundle/ChillPersonBundle",
"Chill\\ReportBundle\\": "src/Bundle/ChillReportBundle",
"Chill\\TaskBundle\\": "src/Bundle/ChillTaskBundle",
"Chill\\ThirdPartyBundle\\": "src/Bundle/ChillThirdPartyBundle"
}
},
"homepage" : "http://chill.social",
"support": {
"issues": "https://gitlab.com/Chill-projet/chill-bundles/-/issues",
"sources": "https://gitlab.com/Chill-projet/chill-bundles",
"docs": "http://docs.chill.social"
},
"authors" : [
{
"name": "Champs-Libres",
"email": "info@champs-libres.coop",
"homepage": "http://www.champs-libres.coop"
}
],
"require": {
"php": "~7.2",
"twig/extensions": "~1.5",
"symfony/assetic-bundle": "~2.8",
"symfony/monolog-bundle": "~3.2",
"symfony/symfony": "~3.4",
"doctrine/dbal": "~2.7",
"doctrine/orm": "~2.6",
"doctrine/common": "~2.8",
"doctrine/doctrine-bundle": "~1.9",
"champs-libres/composer-bundle-migration": "~1.0",
"doctrine/doctrine-migrations-bundle": "~1.3",
"doctrine/migrations": "~1.0",
"phpoffice/phpspreadsheet": "~1.2",
"sensio/distribution-bundle": "^5.0",
"knplabs/knp-menu-bundle": "^2.2",
"league/csv": "^9.0",
"champs-libres/async-uploader-bundle": "~1.0",
"laminas/laminas-zendframework-bridge": "~1.3"
},
"require-dev": {
"symfony/dom-crawler": "~3.4",
"doctrine/doctrine-fixtures-bundle": "~3.0",
"symfony/phpunit-bridge": "~3.4",
"phpunit/phpunit": "~5.6"
},
"scripts": {
"post-install-cmd": [
"ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"post-update-cmd": [
"ComposerBundleMigration\\Composer\\Migrations::synchronizeMigrations",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
]
},
"extra": {
"app-migrations-dir": "Resources/test/Fixtures/App/app/DoctrineMigrations",
"symfony-app-dir": "Tests/Fixtures/App/"
},
"prefer-stable": true
}

Some files were not shown because too many files have changed in this diff Show More