-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8be886b
Showing
9 changed files
with
2,025 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
vendor |
This file contains 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 characters
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]); | ||
``` | ||
|
This file contains 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 characters
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": { | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.