Skip to content

Commit

Permalink
Manage composer.lock and composer update (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coutadeur authored and davidcoutadeur committed Jul 25, 2024
1 parent e5e4c3c commit 7a39be8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ cache/*
docs/_build
/vendor/
/htdocs/vendor/bootstrap/
composer.lock
tests/.phpunit.result.cache
16 changes: 16 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,19 @@ Start container, mounting that configuration file:
docker run -p 80:80 \
-v /home/test/servicedesk.conf.php:/var/www/conf/config.inc.local.php \
-it docker.io/ltbproject/service-desk:latest


From git repository, for developpers only
-----------------------------------------

You can get the content of git repository

Update composer dependencies:

.. prompt:: bash

composer update

Depending on your php version, this command will determine the versions of composer dependencies, and create a ``composer.lock`` file. Then it will download these dependencies and put them in vendor/ directory.

Then you can follow the instructions from `From tarball`_, especially the prerequisites.

0 comments on commit 7a39be8

Please sign in to comment.