Skip to content

Commit

Permalink
Merge branch 'release/2.9.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bobthecow committed Aug 15, 2015
2 parents 64c28cc + eff33af commit c745b01
Show file tree
Hide file tree
Showing 84 changed files with 321 additions and 290 deletions.
15 changes: 13 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,21 @@ use Symfony\CS\FixerInterface;
$config = Config::create()
// use symfony level and extra fixers:
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
->fixers(array('align_double_arrow', '-concat_without_spaces', 'concat_with_spaces', 'ordered_use', 'strict'))
->fixers(array(
'-concat_without_spaces',
'-pre_increment',
'-unalign_double_arrow',
'-unalign_equals',
'align_double_arrow',
'concat_with_spaces',
'ordered_use',
'strict',
))
->setUsingLinter(false);

$finder = $config->getFinder()
->in(__DIR__);
->in('bin')
->in('src')
->in('test');

return $config;
5 changes: 4 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ enabled:
- strict

disabled:
- concat_without_spaces
- concat_without_spaces
- pre_increment
- unalign_double_arrow
- unalign_equals
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly

sudo: false

matrix:
allow_failures:
- php: hhvm-nightly
fast_finish: true
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2010-2014 Justin Hileman
Copyright (c) 2010-2015 Justin Hileman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion bin/build_bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
181 changes: 0 additions & 181 deletions bin/create_example.php

This file was deleted.

2 changes: 1 addition & 1 deletion src/Mustache/Autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Mustache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Mustache/Cache/AbstractCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Mustache/Cache/FilesystemCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Mustache/Cache/NoopCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of Mustache.php.
*
* (c) 2010-2014 Justin Hileman
* (c) 2010-2015 Justin Hileman
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
Loading

0 comments on commit c745b01

Please sign in to comment.