Skip to content

Commit 626442b

Browse files
committed
Merge remote-tracking branch 'origin/1.1' into merge-1.1
Conflicts: CHANGELOG.md
2 parents 5398f5c + 305ab0a commit 626442b

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.travis.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ php:
44
- 5.3
55
- 5.4
66
- 5.5
7+
- 5.6
78
- hhvm
89

10+
env:
11+
- PACKAGE_VERSION=high
12+
13+
matrix:
14+
include:
15+
- php: 5.3.3
16+
env: PACKAGE_VERSION=low
17+
918
before_script:
10-
- composer install --prefer-source --dev
19+
- composer selfupdate
20+
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-source; fi
21+
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-source; fi
1122

1223
script: phpunit -c tests/phpunit.xml.dist
1324

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Changelog
55
-----
66

77
* **2014-10-24**: Fixed SQL2 handling, notably precedency when generating SQL2 and parsing of literals.
8-
* **2014-10-05** Added PathHelper::getLocalNodeName
9-
* **2014-09-01** Added PathHelper::relativizePath
8+
* **2014-10-05**: Added PathHelper::getLocalNodeName
9+
* **2014-09-01**: Added PathHelper::relativizePath
1010

1111
1.1.1
1212
-----

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
}
2828
],
2929
"require": {
30-
"php": ">=5.3.0",
30+
"php": ">=5.3.3",
3131
"phpcr/phpcr": "~2.1.0",
32-
"symfony/console": "~2.0"
32+
"symfony/console": "2.*,>=2.0.5"
3333
},
3434
"autoload": {
3535
"psr-0": {

0 commit comments

Comments
 (0)