@fishawack/lab-env 4.22.0 → 4.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/commands/create/templates/elasticbeanstalk/.ebextensions/wordpress/post-deploy.config +6 -2
- package/craftcms/3/php/CHANGELOG.md +3 -0
- package/craftcms/3/php/Dockerfile +3 -0
- package/craftcms/3/php/package.json +1 -1
- package/drupal/9/php/CHANGELOG.md +3 -0
- package/drupal/9/php/Dockerfile +3 -0
- package/drupal/9/php/package.json +1 -1
- package/laravel/9/php/CHANGELOG.md +3 -0
- package/laravel/9/php/Dockerfile +3 -0
- package/laravel/9/php/package.json +1 -1
- package/package.json +1 -1
- package/wordpress/1/php/CHANGELOG.md +3 -0
- package/wordpress/1/php/Dockerfile +3 -0
- package/wordpress/1/php/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.22.1 (2023-08-14)
|
|
4
|
+
* [Change] Bumped fishawack/lab-env-craftcms-3-php to 1.0.1
|
|
5
|
+
* [Change] Bumped fishawack/lab-env-drupal-9-php to 0.6.1
|
|
6
|
+
* [Change] Bumped fishawack/lab-env-laravel-9-php to 1.0.2
|
|
7
|
+
* [Change] Bumped fishawack/lab-env-wordpress-1-php to 1.1.1
|
|
8
|
+
* [Bug] move composer home directory so cache folder is writeable
|
|
9
|
+
* [Bug] move composer home directory so cache folder is writeable
|
|
10
|
+
* [Bug] move composer home directory so cache folder is writeable
|
|
11
|
+
* [Bug] move composer home directory so cache folder is writeable
|
|
12
|
+
|
|
3
13
|
### 4.22.0 (2023-08-09)
|
|
4
14
|
* [Feature] Added newly setup AWS accounts to the client prompts on @fishawack/core and @fishawack/lab-env have mismatching versions.
|
|
5
15
|
* [Feature] added drupal configs
|
package/commands/create/templates/elasticbeanstalk/.ebextensions/wordpress/post-deploy.config
CHANGED
|
@@ -4,7 +4,11 @@ container_commands:
|
|
|
4
4
|
leader_only: true
|
|
5
5
|
20-db-remove:
|
|
6
6
|
command: "rm -rf auto-ci-db.sql"
|
|
7
|
-
30-
|
|
7
|
+
30-cleanup-plugins:
|
|
8
|
+
command: "wp option update active_plugins {} --format=json"
|
|
9
|
+
40-activate-plugins:
|
|
10
|
+
command: "wp plugin activate --all"
|
|
11
|
+
50-rewrite-flush:
|
|
8
12
|
command: "vendor/bin/wp rewrite flush --hard"
|
|
9
|
-
|
|
13
|
+
60-rewrite-flush:
|
|
10
14
|
command: "vendor/bin/wp cli cache clear"
|
|
@@ -18,6 +18,9 @@ COPY ./policy.xml /etc/ImageMagick-6/policy.xml
|
|
|
18
18
|
# Add php user
|
|
19
19
|
RUN useradd -m -G www-data -s /bin/bash php
|
|
20
20
|
|
|
21
|
+
# Change composer home dir
|
|
22
|
+
ENV COMPOSER_HOME=/home/php/.composer
|
|
23
|
+
|
|
21
24
|
# Cleanup apt-get install folders
|
|
22
25
|
RUN apt-get clean && \
|
|
23
26
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
package/drupal/9/php/Dockerfile
CHANGED
|
@@ -18,6 +18,9 @@ COPY ./policy.xml /etc/ImageMagick-6/policy.xml
|
|
|
18
18
|
# Add php user
|
|
19
19
|
RUN useradd -m -G www-data -s /bin/bash php
|
|
20
20
|
|
|
21
|
+
# Change composer home dir
|
|
22
|
+
ENV COMPOSER_HOME=/home/php/.composer
|
|
23
|
+
|
|
21
24
|
# Cleanup apt-get install folders
|
|
22
25
|
RUN apt-get clean && \
|
|
23
26
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
package/laravel/9/php/Dockerfile
CHANGED
|
@@ -15,6 +15,9 @@ COPY ./policy.xml /etc/ImageMagick-6/policy.xml
|
|
|
15
15
|
# Add php user
|
|
16
16
|
RUN useradd -m -G www-data -s /bin/bash php
|
|
17
17
|
|
|
18
|
+
# Change composer home dir
|
|
19
|
+
ENV COMPOSER_HOME=/home/php/.composer
|
|
20
|
+
|
|
18
21
|
# Cleanup apt-get install folders
|
|
19
22
|
RUN apt-get clean && \
|
|
20
23
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
package/package.json
CHANGED
|
@@ -18,6 +18,9 @@ COPY ./policy.xml /etc/ImageMagick-6/policy.xml
|
|
|
18
18
|
# Add php user
|
|
19
19
|
RUN useradd -m -G www-data -s /bin/bash php
|
|
20
20
|
|
|
21
|
+
# Change composer home dir
|
|
22
|
+
ENV COMPOSER_HOME=/home/php/.composer
|
|
23
|
+
|
|
21
24
|
# Cleanup apt-get install folders
|
|
22
25
|
RUN apt-get clean && \
|
|
23
26
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|