File tree Expand file tree Collapse file tree 5 files changed +1179
-348
lines changed Expand file tree Collapse file tree 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 11RTLCSS for PHP
22--------------
33
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+
46RTLCSS is a framework for converting Left-To-Right (LTR) Cascading Style Sheets(CSS) to Right-To-Left (RTL).
57
68## Usage
Original file line number Diff line number Diff line change 66 "license" : " MIT" ,
77 "minimum-stability" : " dev" ,
88 "require" : {
9- "php" : " >=5.4 " ,
10- "sabberworm/php-css-parser" : " *"
9+ "php" : " >=7.3.0 " ,
10+ "sabberworm/php-css-parser" : " 8.1. *"
1111 },
1212 "require-dev" : {
13- "phpunit/phpunit" : " *"
13+ "phpunit/phpunit" : " 9.5. *"
1414 },
1515 "autoload" : {
1616 "psr-4" : {
You can’t perform that action at this time.
0 commit comments