From 6a97d9f85548aa60c1838bd2be349cd6087140ce Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sat, 17 May 2014 13:04:25 +0200 Subject: [PATCH 1/2] [task/sami] Also ignore ext/ directory. PHPBB3-12495 --- build/sami.conf.php | 1 + 1 file changed, 1 insertion(+) diff --git a/build/sami.conf.php b/build/sami.conf.php index 0edf918a2d..de23684548 100644 --- a/build/sami.conf.php +++ b/build/sami.conf.php @@ -18,6 +18,7 @@ $iterator = Symfony\Component\Finder\Finder::create() ->name('*.php') ->in(__DIR__ . '/../phpBB/') ->notPath('#^cache/#') + ->notPath('#^ext/#') ->notPath('#^vendor/#') ->notPath('#^develop/#') ->notPath('data') From 223058c8c69203c48411f14e95b1ee36226ac5c8 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sat, 17 May 2014 13:05:52 +0200 Subject: [PATCH 2/2] [task/sami] Establish alphabetical order. PHPBB3-12495 --- build/sami.conf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/sami.conf.php b/build/sami.conf.php index de23684548..dd57ec8780 100644 --- a/build/sami.conf.php +++ b/build/sami.conf.php @@ -18,9 +18,9 @@ $iterator = Symfony\Component\Finder\Finder::create() ->name('*.php') ->in(__DIR__ . '/../phpBB/') ->notPath('#^cache/#') + ->notPath('#^develop/#') ->notPath('#^ext/#') ->notPath('#^vendor/#') - ->notPath('#^develop/#') ->notPath('data') ;