mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-01 12:33:49 +00:00
Clean skeleton (and add Junie guidelines)
This commit is contained in:
1
src/Bundle/ChillTaskBundle/.gitignore
vendored
1
src/Bundle/ChillTaskBundle/.gitignore
vendored
@@ -1 +0,0 @@
|
||||
/vendor/
|
@@ -1,25 +0,0 @@
|
||||
.test_definition: &test_definition
|
||||
services:
|
||||
- chill/database:latest
|
||||
before_script:
|
||||
- composer config github-oauth.github.com $GITHUB_TOKEN
|
||||
- composer install
|
||||
- cp Resources/test/Fixtures/App/app/config/parameters.gitlab-ci.yml Resources/test/Fixtures/App/app/config/parameters.yml
|
||||
- php Resources/test/Fixtures/App/app/console --env=test cache:warmup
|
||||
- php Resources/test/Fixtures/App/app/console doctrine:migrations:migrate --env=test --no-interaction
|
||||
- php Resources/test/Fixtures/App/app/console doctrine:fixtures:load --env=test --no-interaction
|
||||
|
||||
|
||||
stages:
|
||||
- deploy
|
||||
|
||||
deploy-packagist:
|
||||
stage: deploy
|
||||
image: chill/ci-image:php-7.2
|
||||
before_script:
|
||||
# test that PACKAGIST USERNAME and PACKAGIST_TOKEN variable are set
|
||||
- if [ -z ${PACKAGIST_USERNAME+x} ]; then echo "Please set PACKAGIST_USERNAME variable"; exit -1; fi
|
||||
- if [ -z ${PACKAGIST_TOKEN+x} ]; then echo "Please set PACKAGIST_TOKEN variable"; exit -1; fi
|
||||
script:
|
||||
- STATUSCODE=$(curl -XPOST -H'content-type:application/json' "https://packagist.org/api/update-package?username=$PACKAGIST_USERNAME&apiToken=$PACKAGIST_TOKEN" -d"{\"repository\":{\"url\":\"$CI_PROJECT_URL.git\"}}" --silent --output /dev/stderr --write-out "%{http_code}")
|
||||
- if [ $STATUSCODE = "202" ]; then exit 0; else exit $STATUSCODE; fi
|
@@ -1,52 +0,0 @@
|
||||
Version 1.5.1
|
||||
=============
|
||||
|
||||
- fix bug in filter task form: allow to show the list of users, which was hidden when the user had access to multiple centers;
|
||||
- add assignee in task list;
|
||||
- fix some translation;
|
||||
- add a filtering by center on list;
|
||||
- add color in boxes for task statuses;
|
||||
|
||||
Version 1.5.4
|
||||
=============
|
||||
|
||||
- adding indexes on place event and task
|
||||
|
||||
Version 1.5.5
|
||||
=============
|
||||
|
||||
- Fix error on the "see more" link which was not showed
|
||||
- Layout of the task list
|
||||
|
||||
Version 1.5.6
|
||||
=============
|
||||
|
||||
- fix: validation error on warning date interval is not shown
|
||||
- add privacy events to task show / list;
|
||||
- add privacy events to task edit / update;
|
||||
|
||||
Version 1.5.7
|
||||
==============
|
||||
|
||||
- fix error when showing task list without person in context (issue #3) ;
|
||||
|
||||
Version 1.5.8
|
||||
=============
|
||||
|
||||
- add returnPath to page Show and List for Single tasks ;
|
||||
|
||||
Version 1.5.9
|
||||
=============
|
||||
|
||||
- better exception description when task workflow is not found ;
|
||||
|
||||
Version 1.5.10
|
||||
==============
|
||||
|
||||
- load webpack config using a `configure` function ;
|
||||
|
||||
Version 1.5.11
|
||||
==============
|
||||
|
||||
- [task] fix loading of chill task list ;
|
||||
|
@@ -1,39 +0,0 @@
|
||||
{
|
||||
"name": "chill-project/task",
|
||||
"description": "Associate task with peoples in chill.social",
|
||||
"type": "symfony-bundle",
|
||||
"keywords": ["chill", "social work", "tasks"],
|
||||
"homepage": "https://framagit.org/Chill-project/Chill-Task",
|
||||
"autoload": {
|
||||
"psr-4": { "Chill\\TaskBundle\\" : "" }
|
||||
},
|
||||
"autoload-dev": {
|
||||
"classmap": [ "Resources/test/Fixtures/App/app/AppKernel.php" ]
|
||||
},
|
||||
"require": {
|
||||
|
||||
},
|
||||
"require-dev": {
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Champs-Libres",
|
||||
"email": "info@champs-libres.coop"
|
||||
}
|
||||
],
|
||||
"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": "Resources/test/Fixtures/App/"
|
||||
}
|
||||
}
|
4403
src/Bundle/ChillTaskBundle/composer.lock
generated
4403
src/Bundle/ChillTaskBundle/composer.lock
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user