Last active
February 18, 2024 12:05
-
-
Save andyshinn/e2c428f2cd234b718239 to your computer and use it in GitHub Desktop.
Revisions
-
andyshinn revised this gist
Dec 11, 2015 . No changes.There are no files selected for viewing
-
andyshinn created this gist
Dec 11, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ { "require": { "mfacenet/hello-world": "v1.*" } } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ app: restart: 'yes' image: php:7 command: php -S 0.0.0.0:8000 /app/index.php ports: - "8000:8000" volumes: - .:/app composer: restart: 'no' image: composer/composer:php7 command: install volumes: - .:/app This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ <?php require 'vendor/autoload.php'; use HelloWorld\SayHello; echo SayHello::world();