File tree 5 files changed +56
-16
lines changed
5 files changed +56
-16
lines changed Original file line number Diff line number Diff line change
1
+ name : " testing"
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ tests :
11
+ name : Tests
12
+ runs-on : ubuntu-latest
13
+
14
+ strategy :
15
+ matrix :
16
+ php :
17
+ - 7.2
18
+ - 7.3
19
+ - 7.4
20
+ composer-args : [ "" ]
21
+ include :
22
+ - php : 8.0
23
+ composer-args : --ignore-platform-reqs
24
+ fail-fast : false
25
+
26
+ steps :
27
+ - name : Checkout
28
+ uses : actions/checkout@v2
29
+
30
+ - name : Install PHP
31
+ uses : shivammathur/setup-php@v2
32
+ with :
33
+ php-version : ${{ matrix.php }}
34
+
35
+ - name : Cache PHP dependencies
36
+ uses : actions/cache@v2
37
+ with :
38
+ path : vendor
39
+ key : ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
40
+ restore-keys : ${{ runner.os }}-php-${{ matrix.php }}-composer-
41
+
42
+ - name : Install dependencies
43
+ run : composer install --prefer-dist --no-progress --no-suggest ${{ matrix.composer-args }}
44
+
45
+ - name : Tests
46
+ run : composer test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ## [ 1.1.1] - Unreleased
9
+ ### Fixed
10
+ - Support for PHP 8 [ #1 ]
11
+
8
12
## [ 1.1.0] - 2020-05-23
9
13
### Removed
10
14
- Function ` _ ` in the list of default functions to scan
@@ -15,4 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
15
19
## 1.0.0 - 2019-11-05
16
20
First version
17
21
22
+ [ #1 ] : https://github.com/php-gettext/JS-Scanner/issues/1
23
+
24
+ [ 1.1.1 ] : https://github.com/php-gettext/JS-Scanner/compare/v1.1.0...HEAD
18
25
[ 1.1.0 ] : https://github.com/php-gettext/JS-Scanner/compare/v1.0.0...v1.1.0
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Latest Version on Packagist] [ ico-version ]] [ link-packagist ]
4
4
[ ![ Software License] [ ico-license ]] ( LICENSE )
5
- [ ![ Build Status] [ ico-travis ]] [ link-travis ]
5
+ ![ Build Status] [ ico-ga ]
6
6
[ ![ Quality Score] [ ico-scrutinizer ]] [ link-scrutinizer ]
7
7
[ ![ Total Downloads] [ ico-downloads ]] [ link-downloads ]
8
8
@@ -52,11 +52,10 @@ The MIT License (MIT). Please see [LICENSE](LICENSE) for more information.
52
52
53
53
[ ico-version ] : https://img.shields.io/packagist/v/gettext/js-scanner.svg?style=flat-square
54
54
[ ico-license ] : https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
55
- [ ico-travis ] : https://img.shields.io/travis/ php-gettext/JS -Scanner/master .svg?style=flat-square
55
+ [ ico-ga ] : https://github.com/ php-gettext/PHP -Scanner/workflows/testing/badge .svg
56
56
[ ico-scrutinizer ] : https://img.shields.io/scrutinizer/g/php-gettext/JS-Scanner.svg?style=flat-square
57
57
[ ico-downloads ] : https://img.shields.io/packagist/dt/gettext/js-scanner.svg?style=flat-square
58
58
59
59
[ link-packagist ] : https://packagist.org/packages/gettext/js-scanner
60
- [ link-travis ] : https://travis-ci.org/php-gettext/JS-Scanner
61
60
[ link-scrutinizer ] : https://scrutinizer-ci.com/g/php-gettext/JS-Scanner
62
61
[ link-downloads ] : https://packagist.org/packages/gettext/js-scanner
Original file line number Diff line number Diff line change 18
18
"issues" : " https://github.com/php-gettext/JS-Scanner/issues"
19
19
},
20
20
"require" : {
21
- "php" : " ^7.2" ,
21
+ "php" : " ^7.2|^8.0 " ,
22
22
"gettext/gettext" : " ^5.5.0" ,
23
23
"mck89/peast" : " ^1.9"
24
24
},
You can’t perform that action at this time.
0 commit comments