Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Crizz0 committed May 5, 2019
2 parents 811ed55 + e3d78f9 commit 4aa9421
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ To run the unit tests locally, use this command:

php vendor/phpunit/phpunit/phpunit tests/

## Contributing

If you notice any problems with this application, please raise an issue at https://github.com/phpbb/phpbb-translation-validator/issues.

To submit your own code contributions, please fork the project and submit a pull request at https://github.com/phpbb/phpbb-translation-validator/pulls.

When a new version is released, the version number will be updated in `composer.json` and `translation.php`. A new tag will be created and the package will become available at https://packagist.org/packages/phpbb/translation-validator.

## License

[GPLv2](license.txt)
4 changes: 3 additions & 1 deletion translation.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
*
*/

const TRANSLATION_VALIDATOR_VERSION = '1.5.1';

require 'vendor/autoload.php';

use Phpbb\TranslationValidator\Cli;

// Run the command line script for the Translation Validator
$app = new Cli();
$app = new Cli(TRANSLATION_VALIDATOR_VERSION);
$app->run();

0 comments on commit 4aa9421

Please sign in to comment.