kzykhys / Ciconia

A New Markdown parser for PHP5.4
http://ciconia.kzykhys.com/
MIT License
355 stars 31 forks source link

PHP User Deprecated Warning - OptionsResolver #54

Closed nadar closed 8 years ago

nadar commented 9 years ago

i get an user deprecated warning:

Calling the Symfony\Component\OptionsResolver\OptionsResolver::setAllowedTypes method with an array of options is deprecated since version 2.6 and will be removed in 3.0. Use the new signature with a single option instead.

code.

$ciconia = new \Ciconia\Ciconia();
$html = $ciconia->render(
        'Markdown is **awesome**',
        ['tabWidth' => 8, 'nestedTagLevel' => 5, 'strict' => true]
);

composer.json

"kzykhys/ciconia": "1.0.*"