File tree Expand file tree Collapse file tree 5 files changed +54
-8
lines changed Expand file tree Collapse file tree 5 files changed +54
-8
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.0.0 - 2017-11-20
6
+
7
+ ### Changed
8
+
9
+ - Updated YouTrack PHP SDK major version to 4.0.0
10
+
5
11
## 3.0.0 - 2017-09-13
6
12
7
13
### Changed
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Laravel wrapper for the [YouTrack PHP SDK](https://github.com/cybercog/youtrack-
30
30
- [ Contributing] ( #contributing )
31
31
- [ Testing] ( #testing )
32
32
- [ Security] ( #security )
33
- - [ Credits ] ( #credits )
33
+ - [ Contributors ] ( #contributors )
34
34
- [ Alternatives] ( #alternatives )
35
35
- [ License] ( #license )
36
36
- [ About CyberCog] ( #about-cybercog )
@@ -243,11 +243,10 @@ $ composer test
243
243
244
244
If you discover any security related issues, please email open@cybercog.su instead of using the issue tracker.
245
245
246
- ## Credits
246
+ ## Contributors
247
247
248
- | | @mention |
249
- | ---| ---|
250
- | ![ @a-komarev ] ( https://avatars2.githubusercontent.com/u/1849174?s=64 ) | [ @a-komarev ] ( https://github.com/a-komarev ) |
248
+ | <a href =" https://github.com/a-komarev " >![ @a-komarev ] ( https://avatars.githubusercontent.com/u/1849174?s=110 ) <br />Anton Komarev</a > |
249
+ | :---: |
251
250
252
251
[ Laravel YouTrack SDK contributors list] ( ../../contributors )
253
252
Original file line number Diff line number Diff line change 38
38
},
39
39
"require" : {
40
40
"php" : " ^7.1" ,
41
- "cybercog/youtrack-php-sdk" : " ^3 .0" ,
41
+ "cybercog/youtrack-php-sdk" : " ^4 .0" ,
42
42
"illuminate/support" : " ~5.1.20|~5.2|~5.3|~5.4|~5.5"
43
43
},
44
44
"require-dev" : {
60
60
" composer install --prefer-dist --no-interaction --working-dir tests/framework/5.1" ,
61
61
" composer install --prefer-dist --no-interaction --working-dir tests/framework/5.2" ,
62
62
" composer install --prefer-dist --no-interaction --working-dir tests/framework/5.3" ,
63
- " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4"
63
+ " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4" ,
64
+ " composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5"
64
65
],
65
66
"test" : [
66
67
" ./vendor/bin/phpunit --configuration tests/framework/5.1" ,
67
68
" ./vendor/bin/phpunit --configuration tests/framework/5.2" ,
68
69
" ./vendor/bin/phpunit --configuration tests/framework/5.3" ,
69
- " ./vendor/bin/phpunit --configuration tests/framework/5.4"
70
+ " ./vendor/bin/phpunit --configuration tests/framework/5.4" ,
71
+ " ./vendor/bin/phpunit --configuration tests/framework/5.5"
70
72
]
71
73
},
72
74
"config" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "require" : {
3
+ "illuminate/support" : " ~5.5.0"
4
+ },
5
+ "require-dev" : {
6
+ "orchestra/testbench" : " 3.5.*"
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
+ syntaxCheck =" false" >
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