vundi / php-evangelists
A package that tells you what type of evangelist you are depending on the number of public repos you have on github
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/vundi/php-evangelists
Requires
- php: >=5.6
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: ^5.1
- satooshi/php-coveralls: ^0.7.0
This package is not auto-updated.
Last update: 2025-10-07 23:38:31 UTC
README
PHP evangelize is a PHP package that tells a user what type of evangelist He/She is based on the number of public repositories they own on Github.
Installation
Inside your project folder, run this commands
$ composer require vundi/phpevangelize $ composer install
Sample Usage
<?php require 'vendor/autoload.php'; use Vundi\Checkpoint1\GithubApi; use Vundi\Checkpoint1\EvangelistStatus; use Vundi\Checkpoint1\Exceptions\InvalidUsername; use Vundi\Checkpoint1\Exceptions\NoUsernamePassed; try { $user = new EvangelistStatus("andela-cvundi"); echo $user->getStatus(); } catch (InvalidUsername $e) { echo $e->getMessage(); } catch (NoUsernamePassed $e) { echo $e->getMessage(); }
Credits
License
The MIT License (MIT). Please see License File for more information.