cividesk / civicrm
There is no license information available for the latest version (5.75.x-dev) of this package.
CiviCRM platform for Cividesk.
5.75.x-dev
2025-04-02 16:51 UTC
Requires
- civicrm/civicrm-core: 5.75.2
- civicrm/civicrm-drupal-8: 5.75.2
- civicrm/civicrm-packages: 5.75.2
- cweagans/composer-patches: ~1.0
This package is auto-updated.
Last update: 2025-04-02 11:22:18 UTC
README
Getting started
Drupal 9: with composer
composer require cividesk/civicrm:5.75.x-dev
You can even then remove the `
civicrm/civicrm-core`
, `
civicrm/civicrm-drupal-8and
civicrm/civicrm-packageslines from your
composer.jsonfile as these dependencies are already included in
cividesk/civicrm-patches`
.
Drupal 7 / WordPress: in Dockerfile from container
ARG BRANCH=5.75
FROM ${BUILD_REGISTRY}cividesk/civicrm:${BRANCH} AS civicrm
FROM (your base container)
COPY --chown=www-data:www-data --from=civicrm civicrm (target path for civicrm)
COPY --chown=www-data:www-data --from=civicrm civicrm-extend (target path for civicrm-extend)
Add new patches to the build
If the patch is available in a gitlab repository:
- [ ] download the patch in the patches folder (use the same name as the commit id)
- the easiest way to download a patch file is to add
`
.patch`
to the end of the URL for the corresponding PR. - use the same name as the commit id for the patch file
- the easiest way to download a patch file is to add
If you need to create patch an existing filei (ie. CRM/Report/Form.php):
cd {civicrm_root}
cp {file}.php {file}.php.ori
vi {file}.php
diff -Naur {file}.php.ori {file}.php > {patches_dir}/my-new-patch.patch
Then:
- [ ] edit the
`
patches/README.md`
file to add a comment and instructions about your patch - [ ] run
`
make`
and check that all patches apply correctly - [ ] run
`
make release && git status`
- [ ] check that all looks good (the composer.json should have changed)
- [ ] commit and push all your changes