diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-08-21 05:21:07 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-08-21 05:21:07 +0200 |
commit | 4b251ecc41f89cacfc4a1a607787e464bcd39fa2 (patch) | |
tree | e97b762416a3485b4ad6e6ccef5eb6461cf22760 | |
download | simplephp-4b251ecc41f89cacfc4a1a607787e464bcd39fa2.tar.gz simplephp-4b251ecc41f89cacfc4a1a607787e464bcd39fa2.tar.bz2 simplephp-4b251ecc41f89cacfc4a1a607787e464bcd39fa2.tar.xz simplephp-4b251ecc41f89cacfc4a1a607787e464bcd39fa2.zip |
Dummy PHP project
-rw-r--r-- | composer.json | 9 | ||||
-rw-r--r-- | index.php | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2616222 --- /dev/null +++ b/composer.json @@ -0,0 +1,9 @@ +{ + "name": "SimplePHP", + "description": "Simple PHP", + "type": "project", + "license": "MIT", + "require": { + "php": ">=5.6", + } +} diff --git a/index.php b/index.php new file mode 100644 index 0000000..28eb04a --- /dev/null +++ b/index.php @@ -0,0 +1 @@ +<html><body>WWW volume is not loaded</body></html> |