This package contains a collection of programming languages
This library allows you
- To get a list of all programming languages
- To test if a language exists in the collection
- To count the number of languages available
$ composer require snippetify/programming-languages
use Snippetify\ProgrammingLanguages\Languages;
// Get all languages
$languages = Languages::create()->all();
// Test if language exists
$exists = Languages::create()->exists('php');
// Count available languages
$count = Languages::create()->count();
use Snippetify\ProgrammingLanguages\Facades\Languages;
// Get all languages
$languages = Languages::all();
// Test if language exists
$exists = Languages::exists('php');
// Count available languages
$count = Languages::count();
Please see CHANGELOG for more information what has changed recently.
composer test
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.