dugajean / laravel-yaml
YAML parser for Laravel.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 4 760
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: >=5.5.9
- symfony/yaml: ^3.1.1
Requires (Dev)
- orchestra/testbench: ~3.0
- phpunit/phpunit: ^4.0
This package is auto-updated.
Last update: 2023-05-20 15:07:09 UTC
README
This package will allow your application to determine whether the request wants a YAML response and then also respond with YAML.
Install
You can pull in the package via composer:
$ composer require dugajean/laravel-yaml
For Laravel 5.4 and lower, add the following service provider to your config/app.php
:
// config/app.php 'providers' => [ ... Dugajean\Yaml\YamlServiceProvider::class, ];
For Laravel 5.5 and greater, the package will auto register the provider for you.
Usage
See if the request wants a YAML response and then respond with YAML...
// app/Http/routes.php use Illuminate\Http\Request; Route::get('/some/route', function (Request $request) { // Was this a YAML request? if ($request->wantsYaml()) { // Then let's respond with YAML! response()->yaml(['This is my YAML response!']); } });
License
The MIT License (MIT). Please see License File for more information.
Support on Beerpay
Hey dude! Help me out for a couple of 🍻!