File tree 7 files changed +53
-6
lines changed
7 files changed +53
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-youtrack-sdk ` will be documented in this file.
4
4
5
+ ## 4.2.0 - 2018-09-09
6
+
7
+ ### Added
8
+
9
+ - Laravel 5.7 support
10
+
5
11
## 4.1.0 - 2018-02-08
6
12
7
13
### Added
Original file line number Diff line number Diff line change 39
39
"require" : {
40
40
"php" : " ^7.1" ,
41
41
"cybercog/youtrack-php-sdk" : " ^4.0" ,
42
- "illuminate/support" : " ~5.4|~5.5|~5.6"
42
+ "illuminate/support" : " ~5.4|~5.5|~5.6|~5.7 "
43
43
},
44
44
"require-dev" : {
45
45
"friendsofphp/php-cs-fixer" : " ^2.10" ,
59
59
"test-install" : [
60
60
" composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4" ,
61
61
" composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5" ,
62
- " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.6"
62
+ " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.6" ,
63
+ " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.7"
63
64
],
64
65
"test" : [
65
66
" ./vendor/bin/phpunit --configuration tests/framework/5.4" ,
66
67
" ./vendor/bin/phpunit --configuration tests/framework/5.5" ,
67
- " ./vendor/bin/phpunit --configuration tests/framework/5.6"
68
+ " ./vendor/bin/phpunit --configuration tests/framework/5.6" ,
69
+ " ./vendor/bin/phpunit --configuration tests/framework/5.7"
68
70
]
69
71
},
70
72
"config" : {
Original file line number Diff line number Diff line change 9
9
convertWarningsToExceptions =" true"
10
10
processIsolation =" false"
11
11
stopOnFailure =" false"
12
- syntaxCheck = " false " >
12
+ >
13
13
<testsuites >
14
14
<testsuite name =" Package" >
15
15
<directory suffix =" Test.php" >../../Unit/</directory >
Original file line number Diff line number Diff line change 9
9
convertWarningsToExceptions =" true"
10
10
processIsolation =" false"
11
11
stopOnFailure =" false"
12
- syntaxCheck = " false " >
12
+ >
13
13
<testsuites >
14
14
<testsuite name =" Package" >
15
15
<directory suffix =" Test.php" >../../Unit/</directory >
Original file line number Diff line number Diff line change 9
9
convertWarningsToExceptions =" true"
10
10
processIsolation =" false"
11
11
stopOnFailure =" false"
12
- syntaxCheck = " false " >
12
+ >
13
13
<testsuites >
14
14
<testsuite name =" Package" >
15
15
<directory suffix =" Test.php" >../../Unit/</directory >
Original file line number Diff line number Diff line change
1
+ {
2
+ "require" : {
3
+ "illuminate/support" : " ~5.7.0"
4
+ },
5
+ "require-dev" : {
6
+ "orchestra/testbench" : " 3.7.*"
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit
3
+ backupGlobals =" false"
4
+ backupStaticAttributes =" false"
5
+ bootstrap =" vendor/autoload.php"
6
+ colors =" true"
7
+ convertErrorsToExceptions =" true"
8
+ convertNoticesToExceptions =" true"
9
+ convertWarningsToExceptions =" true"
10
+ processIsolation =" false"
11
+ stopOnFailure =" false"
12
+ >
13
+ <testsuites >
14
+ <testsuite name =" Package" >
15
+ <directory suffix =" Test.php" >../../Unit/</directory >
16
+ </testsuite >
17
+ </testsuites >
18
+ <filter >
19
+ <whitelist >
20
+ <directory suffix =" .php" >./src/</directory >
21
+ </whitelist >
22
+ </filter >
23
+ <php >
24
+ <env name =" YOUTRACK_BASE_URI" value =" https://youtrack.example.com" />
25
+ <env name =" YOUTRACK_AUTH" value =" token" />
26
+ <env name =" YOUTRACK_TOKEN" value =" " />
27
+ <env name =" YOUTRACK_USERNAME" value =" " />
28
+ <env name =" YOUTRACK_PASSWORD" value =" " />
29
+ <env name =" YOUTRACK_PROJECT" value =" TEST" />
30
+ </php >
31
+ </phpunit >
You can’t perform that action at this time.
0 commit comments