File tree 5 files changed +1179
-348
lines changed 5 files changed +1179
-348
lines changed Original file line number Diff line number Diff line change
1
+ name : RTLCSS for PHP CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-18.04
8
+
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ php : ['7.3', '7.4', '8.0']
13
+
14
+ steps :
15
+ - name : Check out repository code
16
+ uses : actions/checkout@v2
17
+
18
+ - name : Setup PHP ${{ matrix.php }}
19
+ uses : shivammathur/setup-php@v2
20
+ with :
21
+ php-version : ${{ matrix.php }}
22
+ coverage : none
23
+
24
+ - name : Run composer
25
+ uses : php-actions/composer@v6
26
+
27
+ - name : PHPUnit tests
28
+ run :
29
+ vendor/bin/phpunit
Original file line number Diff line number Diff line change 1
1
RTLCSS for PHP
2
2
--------------
3
3
4
+ [ ![ Codechecker CI] ( https://github.com/moodlehq/rtlcss-php/actions/workflows/ci.yml/badge.svg )] ( https://github.com/moodlehq/rtlcss-php/actions/workflows/ci.yml )
5
+
4
6
RTLCSS is a framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL).
5
7
6
8
## Usage
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"minimum-stability" : " dev" ,
8
8
"require" : {
9
- "php" : " >=5.4 " ,
10
- "sabberworm/php-css-parser" : " *"
9
+ "php" : " >=7.3.0 " ,
10
+ "sabberworm/php-css-parser" : " 8.1. *"
11
11
},
12
12
"require-dev" : {
13
- "phpunit/phpunit" : " *"
13
+ "phpunit/phpunit" : " 9.5. *"
14
14
},
15
15
"autoload" : {
16
16
"psr-4" : {
You can’t perform that action at this time.
0 commit comments