Introducing coding standards validation.

This commit is contained in:
Marcos Schratzenstaller
2019-04-22 17:28:46 -03:00
committed by Nathan Rice
parent 6e40c921ab
commit fd504d41ac
1624 changed files with 190339 additions and 262 deletions
@@ -0,0 +1,19 @@
#!/usr/bin/env php
<?php
/**
* Validate the PHP_CodeSniffer PEAR package.xml file.
*
* PHP version 5
*
* @category PHP
* @package PHP_CodeSniffer
* @author Juliette Reinders Folmer <phpcs_nospam@adviesenzo.nl>
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
require_once __DIR__.'/ValidatePEAR/FileList.php';
require_once __DIR__.'/ValidatePEAR/ValidatePEARPackageXML.php';
$validate = new ValidatePEARPackageXML();
$validate->validate();