2017 © Pedro Peláez
 

library response

A view response for symfony/http-foundation to use with template engines.

image

laasti/response

A view response for symfony/http-foundation to use with template engines.

  • Wednesday, April 13, 2016
  • by nebulousGirl
  • Repository
  • 1 Watchers
  • 0 Stars
  • 181 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 1 % Grown

The README.md

Laasti/Response

A view response for symfony/http-foundation to use with template engines., (*1)

Waiting for concrete PSR-7 implementations before moving from Symfony., (*2)

Installation

composer require laasti/response

Usage

The responder offers multiple types of responses:, (*3)

  1. Raw: Uses content as is
  2. View: Uses a template engine to render content
  3. Json: Uses the viewdata as JSON content
  4. Redirect: Redirects
  5. Download: Uses the content of a file and force download
  6. Stream: Uses a callback to stream content when it is outputted

Currently, the package offers only a PlainPHP template engine. But, others will be added in the future, suggestions and pull requests are welcomed., (*4)

$viewdata = new Laasti\Response\Data\ArrayData;
$engine = new Laasti\Response\Engines(['/path/to/templates']);
$responder = new Laasti\Response\Responder($viewdata, $engine);

$responder->setData('title', 'Hello world');
$responder->setData('meta.description', 'Dummy page'); //Accessible in the template using $meta['description']

$response = $responder->view('template_name');

//Output response
$response->send();

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

History

See CHANGELOG.md for more information., (*5)

Credits

Author: Sonia Marquette (@nebulousGirl), (*6)

License

Released under the MIT License. See LICENSE.txt file., (*7)

The Versions

13/04 2016

dev-master

9999999-dev

A view response for symfony/http-foundation to use with template engines.

  Sources   Download

MIT

The Requires

 

13/04 2016

v1.2.1

1.2.1.0

A view response for symfony/http-foundation to use with template engines.

  Sources   Download

MIT

The Requires

 

02/11 2015

v1.2

1.2.0.0

A view response for symfony/http-foundation to use with template engines.

  Sources   Download

MIT

The Requires

 

21/09 2015

v1.1

1.1.0.0

A view response for symfony/http-foundation to use with template engines.

  Sources   Download

MIT

The Requires

 

23/08 2015

v1.0

1.0.0.0

A view response for symfony/http-foundation to use with template engines.

  Sources   Download

MIT

The Requires