Skip to content

Commit 9f8fe74

Browse files
committed
Remove minimum-stability:dev, update some version constraints, fixed typo in class name
1 parent acd507e commit 9f8fe74

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
{"type": "vcs", "url": "git://github.com/CHH/meta-template.git"}
1919
],
2020
"require": {
21-
"php": ">=5.3.2",
22-
"chh/meta-template": "1.0.*@dev",
21+
"php": ">=5.3.3",
22+
"chh/meta-template": "~1.0@dev",
2323
"chh/shellwords": "~0.1",
24-
"chh/fileutils": "1.0.*@dev",
24+
"chh/fileutils": "~1.0@dev",
2525
"symfony/yaml": "~2.0",
26-
"ulrichsg/getopt-php": "*@dev",
26+
"ulrichsg/getopt-php": "@dev",
2727
"monolog/monolog": "~1.0"
2828
},
2929
"suggest": {
@@ -44,7 +44,6 @@
4444
"Pipe": "lib/"
4545
}
4646
},
47-
"minimum-stability": "dev",
4847
"extra": {
4948
"branch-alias": {
5049
"dev-master": "1.0.x-dev"

lib/Pipe/Environment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Environment implements \ArrayAccess
4343
function __construct($root = null)
4444
{
4545
$this->root = $root;
46-
$this->loadPaths = new FileUtils\Pathstack($this->root);
46+
$this->loadPaths = new FileUtils\PathStack($this->root);
4747

4848
$this->engines = Template::getEngines();
4949

0 commit comments

Comments
 (0)