File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 31
31
"require" : {
32
32
"zendframework/zend-cache" : " ^2.0" ,
33
33
"psr/container" : " ^1" ,
34
- "symfony/console" : " ~2.3|~3.0" ,
35
- "psr/http-message" : " ^1.0" ,
36
- "symfony/yaml" : " ^2"
34
+ "symfony/console" : " ~2.3|~3.0|^4.0" ,
35
+ "psr/http-message" : " ^1.0"
37
36
},
38
37
"suggest" : {
39
38
"zendframework/zend-psr7bridge" : " For use with the optional view layer" ,
43
42
"zendframework/zend-i18n" : " For use with the optional view layer" ,
44
43
"zendframework/zend-json" : " For use with the optional view layer" ,
45
44
"mongodb/mongodb" : " If you intend to use MongoDB for your configuration storage" ,
46
- "zendframework/zend-db" : " If you intend to use a relational DB for your configuration storage"
45
+ "zendframework/zend-db" : " If you intend to use a relational DB for your configuration storage" ,
46
+ "symfony/yaml" : " If you intend to use yaml for parsing configuration files"
47
47
},
48
48
"bin" : [" bin/magium-configuration" ]
49
49
}
Original file line number Diff line number Diff line change 7
7
8
8
class YamlConfigurationRepositoryTest extends TestCase
9
9
{
10
+ protected function setUp ()
11
+ {
12
+ if (!class_exists ('Symfony\Component\Yaml\Yaml ' )) {
13
+ $ this ->markTestSkipped (
14
+ 'The package symfony/yaml is not available. '
15
+ );
16
+ }
17
+ }
10
18
11
19
public function testXpath ()
12
20
{
You can’t perform that action at this time.
0 commit comments