@fishawack/lab-env 4.13.0 → 4.15.0

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.
Files changed (73) hide show
  1. package/.gitlab-ci.yml +26 -0
  2. package/CHANGELOG.md +69 -0
  3. package/commands/artisan.js +1 -3
  4. package/commands/check.js +2 -4
  5. package/commands/clean.js +2 -4
  6. package/commands/composer.js +1 -3
  7. package/commands/connect.js +1 -16
  8. package/commands/content.js +1 -3
  9. package/commands/craft.js +1 -3
  10. package/commands/deploy.js +1 -1
  11. package/commands/docker/mocha.js +1 -1
  12. package/commands/drush.js +1 -3
  13. package/commands/execute.js +8 -3
  14. package/commands/install.js +1 -3
  15. package/commands/npm.js +1 -3
  16. package/commands/php.js +1 -3
  17. package/commands/production.js +1 -3
  18. package/commands/regenerate.js +2 -4
  19. package/commands/reinstall.js +2 -4
  20. package/commands/run.js +1 -3
  21. package/commands/setup.js +1 -1
  22. package/commands/start.js +4 -14
  23. package/commands/test.js +2 -12
  24. package/commands/uninstall.js +1 -3
  25. package/commands/watch.js +9 -3
  26. package/commands/wp.js +1 -1
  27. package/core/0/docker-compose.yml +2 -0
  28. package/core/1/CHANGELOG.md +4 -0
  29. package/core/1/Dockerfile +6 -0
  30. package/core/1/docker-compose.yml +3 -0
  31. package/core/1/package.json +1 -1
  32. package/craftcms/3/apache/CHANGELOG.md +4 -0
  33. package/craftcms/3/apache/Dockerfile +11 -0
  34. package/craftcms/3/apache/httpd.conf +554 -0
  35. package/craftcms/3/apache/package.json +11 -0
  36. package/craftcms/3/docker-compose.yml +16 -12
  37. package/craftcms/3/php/CHANGELOG.md +4 -0
  38. package/craftcms/3/php/Dockerfile +32 -6
  39. package/craftcms/3/php/custom.ini +5 -0
  40. package/craftcms/3/php/entrypoint.sh +24 -0
  41. package/craftcms/3/php/package.json +11 -0
  42. package/drupal/9/apache/CHANGELOG.md +4 -0
  43. package/drupal/9/apache/package.json +1 -1
  44. package/drupal/9/docker-compose.yml +13 -7
  45. package/drupal/9/php/CHANGELOG.md +5 -0
  46. package/drupal/9/php/Dockerfile +9 -0
  47. package/drupal/9/php/entrypoint.sh +27 -0
  48. package/drupal/9/php/package.json +2 -2
  49. package/globals.js +52 -62
  50. package/intercept.sh +5 -0
  51. package/laravel/8/docker-compose.yml +12 -5
  52. package/laravel/8/nginx/CHANGELOG.md +4 -0
  53. package/laravel/8/nginx/nginx.conf +2 -0
  54. package/laravel/8/nginx/package.json +2 -2
  55. package/laravel/8/php/CHANGELOG.md +10 -0
  56. package/laravel/8/php/Dockerfile +11 -2
  57. package/laravel/8/php/custom.ini +5 -0
  58. package/laravel/8/php/entrypoint.sh +24 -0
  59. package/laravel/8/php/package.json +2 -2
  60. package/package.json +2 -2
  61. package/wordpress/0/CHANGELOG.md +4 -0
  62. package/wordpress/{5.7.2/wordpress → 0}/Dockerfile +4 -1
  63. package/wordpress/{5.7.2 → 0}/docker-compose.yml +4 -8
  64. package/wordpress/0/package.json +11 -0
  65. package/core/0/docker-compose-dev.yml +0 -5
  66. package/core/1/docker-compose-dev.yml +0 -6
  67. package/craftcms/3/nginx/nginx.conf +0 -37
  68. package/craftcms/3/php/custom.conf +0 -9
  69. package/drupal/9/docker-compose-dev.yml +0 -11
  70. package/laravel/8/docker-compose-dev.yml +0 -11
  71. package/laravel/8/php/custom.conf +0 -9
  72. package/wordpress/5.7.2/apache/.htaccess +0 -25
  73. /package/wordpress/{5.7.2/apache/uploads.ini → 0/custom.ini} +0 -0
@@ -1,37 +0,0 @@
1
- server {
2
- listen 80 default_server;
3
- listen [::]:80 default_server;
4
- root /app/web;
5
-
6
- add_header X-Frame-Options "SAMEORIGIN";
7
- add_header X-XSS-Protection "1; mode=block";
8
- add_header X-Content-Type-Options "nosniff";
9
-
10
- index index.php;
11
-
12
- charset utf-8;
13
-
14
- location / {
15
- try_files $uri $uri/ /index.php?$query_string;
16
- }
17
-
18
- location = /favicon.ico { access_log off; log_not_found off; }
19
- location = /robots.txt { access_log off; log_not_found off; }
20
-
21
- error_page 404 /index.php;
22
-
23
- location ~ \.php$ {
24
- fastcgi_pass php:9000;
25
- include fastcgi_params;
26
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
27
- fastcgi_param SCRIPT_NAME $fastcgi_script_name;
28
- }
29
-
30
- location ~ \.(bmp|cur|gif|ico|jpe?g|png|svgz?|webp|pdf|dzi)$ {
31
- add_header Access-Control-Allow-Origin *;
32
- }
33
-
34
- location ~ /\.(?!well-known).* {
35
- deny all;
36
- }
37
- }
@@ -1,9 +0,0 @@
1
- [www]
2
- user = www-data
3
- group = www-data
4
-
5
- listen.owner = www-data
6
- listen.group = www-data
7
- listen.mode = 0660
8
-
9
- extension=oauth.so
@@ -1,11 +0,0 @@
1
- services:
2
- apache:
3
- build:
4
- context: ./apache/
5
- dockerfile: Dockerfile
6
- target: development
7
- php:
8
- build:
9
- context: ./php/
10
- dockerfile: Dockerfile
11
- target: development
@@ -1,11 +0,0 @@
1
- services:
2
- nginx:
3
- build:
4
- context: ./nginx/
5
- dockerfile: Dockerfile
6
- target: development
7
- php:
8
- build:
9
- context: ./php/
10
- dockerfile: Dockerfile
11
- target: development
@@ -1,9 +0,0 @@
1
- [www]
2
- user = www-data
3
- group = www-data
4
-
5
- listen.owner = www-data
6
- listen.group = www-data
7
- listen.mode = 0660
8
-
9
- extension=oauth.so
@@ -1,25 +0,0 @@
1
- RewriteEngine on
2
- RewriteCond %{HTTP:Authorization} ^(.*)
3
- RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
4
-
5
- RewriteBase /
6
- RewriteRule ^index\.php$ - [L]
7
- RewriteCond %{REQUEST_FILENAME} !-f
8
- RewriteCond %{REQUEST_FILENAME} !-d
9
- RewriteRule . /index.php [L]
10
-
11
- # BEGIN WordPress
12
- # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
13
- # dynamically generated, and should only be modified via WordPress filters.
14
- # Any changes to the directives between these markers will be overwritten.
15
- <IfModule mod_rewrite.c>
16
- RewriteEngine On
17
- RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
18
- RewriteBase /
19
- RewriteRule ^index\.php$ - [L]
20
- RewriteCond %{REQUEST_FILENAME} !-f
21
- RewriteCond %{REQUEST_FILENAME} !-d
22
- RewriteRule . /index.php [L]
23
- </IfModule>
24
-
25
- # END WordPress