├── .gitignore ├── .semver ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Docs ├── Documentation │ ├── Examples.md │ ├── Installation.md │ ├── Overview.md │ └── Setup.md └── Home.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.xml.dist ├── psalm-baseline.xml ├── psalm.xml ├── src └── View │ └── Helper │ └── TinyMCEHelper.php └── tests ├── TestCase └── View │ └── Helper │ └── TinyMceHelperTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/.gitignore -------------------------------------------------------------------------------- /.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/.semver -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/Docs/Documentation/Examples.md -------------------------------------------------------------------------------- /Docs/Documentation/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/Docs/Documentation/Installation.md -------------------------------------------------------------------------------- /Docs/Documentation/Overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docs/Documentation/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/Docs/Documentation/Setup.md -------------------------------------------------------------------------------- /Docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/Docs/Home.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/View/Helper/TinyMCEHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/src/View/Helper/TinyMCEHelper.php -------------------------------------------------------------------------------- /tests/TestCase/View/Helper/TinyMceHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/tests/TestCase/View/Helper/TinyMceHelperTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/TinyMCE/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------