Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
rezen committed Oct 29, 2020
0 parents commit 8be886b
Show file tree
Hide file tree
Showing 9 changed files with 2,025 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# becho
[![Latest Stable Version](https://poser.pugx.org/rezen/becho/v)](//packagist.org/packages/rezen/becho)

Don't use `echo` ... use `becho`!


## Install

`composer install rezen/becho`

## Example
In your app, wherever you init and configure things, add a wrapper
```php
// Basic example
becho("Some colored text", ['color' => BECHO_YELLOW]);
```

43 changes: 43 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "rezen/becho",
"type": "library",
"description": "You know, echo, but better!",
"keywords": [
"echo",
"becho"
],
"homepage": "https://github.com/rezen/becho",
"support": {
"issues": "https://github.com/rezen/becho/issues",
"source": "https://github.com/rezen/becho"
},
"license": "MIT",
"authors": [{
"name": "Andres Hermosilla",
"homepage": "https://ahermosilla.com"
}],
"prefer-stable": true,
"minimum-stability": "dev",
"bin": [],
"require": {
"php": ">=7.2.5"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Becho\\": "src/Becho"

},
"files": [
"src/function.php"
],
"exclude-from-classmap": []
},
"autoload-dev": {
"psr-4": {

}
}
}
Loading

0 comments on commit 8be886b

Please sign in to comment.