-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update PHP dependencies / add composer-dev container (#1675)
Updates a number of composer dependences to their latest compatible for PHP7.3 TODO (These require application/test code changes to upgrade) PHPUnit Twig SwiftMailer Also introduces a new docker service/container called composer-dev It is used for running composer commands in the environment (PHP w/ dependencies) of our application. Run make composer-dev and you will be put into a running container with composer files volume mapped for easy editing/committing
- Loading branch information
Showing
5 changed files
with
526 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM sillsdev/web-languageforge:base-php | ||
|
||
|
||
WORKDIR /work | ||
ENV COMPOSER_ALLOW_SUPERUSER=1 | ||
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* \ | ||
&& install-php-extensions @composer | ||
COPY src/composer.json src/composer.lock /work/ | ||
|
||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.