Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 15e68f6

Browse files
committed
Fix conflicts and merge.
2 parents 29ec89e + d58a603 commit 15e68f6

30 files changed

Lines changed: 32 additions & 92 deletions

File tree

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ php:
55
- 5.5
66
- 5.6
77
- hhvm
8+
- hhvm-nightly
89

910
before_script:
10-
- composer self-update
11-
- composer install --prefer-source --no-interaction --dev
11+
- travis_retry composer self-update
12+
- travis_retry composer install --prefer-source --no-interaction --dev
1213

13-
script: phpunit
14+
script: vendor/bin/phpunit --verbose
1415

1516
matrix:
1617
allow_failures:
1718
- php: 5.6
1819
- php: hhvm
20+
- php: hhvm-nightly
1921
fast_finish: true

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
"aws/aws-sdk-php": "~2.6",
7171
"iron-io/iron_mq": "~1.5",
7272
"pda/pheanstalk": "~2.1",
73-
"mockery/mockery": "0.9.*",
74-
"phpunit/phpunit": "4.0.*"
73+
"mockery/mockery": "~0.9",
74+
"phpunit/phpunit": "~4.0"
7575
},
7676
"autoload": {
7777
"classmap": [

src/Illuminate/Auth/composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
},
2121
"require-dev": {
2222
"illuminate/console": "4.3.*",
23-
"illuminate/routing": "4.3.*",
24-
"phpunit/phpunit": "4.0.*"
23+
"illuminate/routing": "4.3.*"
2524
},
2625
"autoload": {
2726
"psr-0": {"Illuminate\\Auth": ""}

src/Illuminate/Cache/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"nesbot/carbon": "~1.0"
1414
},
1515
"require-dev": {
16-
"phpunit/phpunit": "4.0.*",
1716
"illuminate/database": "4.3.*",
1817
"illuminate/encryption": "4.3.*",
1918
"illuminate/filesystem": "4.3.*",

src/Illuminate/Config/composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
"illuminate/filesystem": "4.3.*",
1313
"illuminate/support": "4.3.*"
1414
},
15-
"require-dev": {
16-
"phpunit/phpunit": "4.0.*"
17-
},
1815
"autoload": {
1916
"psr-0": {"Illuminate\\Config": ""}
2017
},

src/Illuminate/Console/composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
"php": ">=5.4.0",
1212
"symfony/console": "2.5.*"
1313
},
14-
"require-dev": {
15-
"phpunit/phpunit": "4.0.*"
16-
},
1714
"autoload": {
1815
"psr-0": {
1916
"Illuminate\\Console": ""

src/Illuminate/Container/composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
"require": {
1111
"php": ">=5.4.0"
1212
},
13-
"require-dev": {
14-
"phpunit/phpunit": "4.0.*"
15-
},
1613
"autoload": {
1714
"psr-0": {
1815
"Illuminate\\Container": ""

src/Illuminate/Cookie/composer.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
"symfony/http-kernel": "2.5.*",
1515
"symfony/http-foundation": "2.5.*"
1616
},
17-
"require-dev": {
18-
"mockery/mockery": "0.9.*",
19-
"phpunit/phpunit": "4.0.*"
20-
},
2117
"autoload": {
2218
"psr-0": {
2319
"Illuminate\\Cookie": ""

src/Illuminate/Database/composer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
"illuminate/console": "4.3.*",
2121
"illuminate/filesystem": "4.3.*",
2222
"illuminate/pagination": "4.3.*",
23-
"illuminate/support": "4.3.*",
24-
"mockery/mockery": "0.9.*",
25-
"phpunit/phpunit": "4.0.*"
23+
"illuminate/support": "4.3.*"
2624
},
2725
"autoload": {
2826
"psr-0": {

src/Illuminate/Encryption/composer.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
"illuminate/support": "4.3.*",
1313
"symfony/security-core": "2.5.*"
1414
},
15-
"require-dev": {
16-
"phpunit/phpunit": "4.0.*"
17-
},
1815
"autoload": {
1916
"psr-0": {
2017
"Illuminate\\Encryption": ""

0 commit comments

Comments
 (0)