Skip to content

Commit

Permalink
First version
Browse files Browse the repository at this point in the history
  • Loading branch information
delias-silva committed Mar 5, 2021
1 parent f8f99b2 commit 4abcadb
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "zxcvbnm456/echo-php",
"description": "Test project",
"type": "library",
"homepage": "https://github.com/delias-silva/echo-php",
"license": "MIT",
"version": "1.0.0",
"config": {
"platform": {
"php": "8.0"
}
},
"require": {
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"Echo\\": [
"src/echo/"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
},
{ "packagist": false }
]
}
9 changes: 9 additions & 0 deletions src/Echo/Congrats.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

namespace Echo;

class Congrats {
public static function hello() {
echo("Hello!!!!");
}
}

0 comments on commit 4abcadb

Please sign in to comment.