Skip to content
This repository was archived by the owner on Apr 8, 2019. It is now read-only.

Update from upstream at 2d2545a #2

Merged
merged 23 commits into from
Jan 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
22826b2
Add prepend and replace methods
raxbg Oct 5, 2018
9ed24ad
Refactor parsing logic
sabberworm Oct 19, 2018
de71450
Use bin path to phpunit
sabberworm Oct 19, 2018
ff6fa22
Restore PHP 5.3 and 5.4 compatibility
sabberworm Oct 19, 2018
752daa2
Merge pull request #146 from sabberworm/refactor-parsing-logic
sabberworm Oct 21, 2018
fa21204
Add coverage reporting
sabberworm Oct 22, 2018
19dbbd8
Merge pull request #147 from sabberworm/codacy
sabberworm Oct 22, 2018
2d2545a
Merge pull request #149 from raxbg/prepend_replace
sabberworm Nov 20, 2018
7acefcd
Merge branch 'master' of github.com:sabberworm/PHP-CSS-Parser into up…
westonruter Jan 14, 2019
a7a80b4
Add splice method to CSSList
westonruter Jan 14, 2019
3780f73
Merge pull request #152 from xwp/add/splice-method
sabberworm Jan 15, 2019
e6b1b45
Merge branch 'master' of github.com:sabberworm/PHP-CSS-Parser into up…
westonruter Jan 15, 2019
032b86c
Extend output formatting with additional delimiter options
westonruter Jan 15, 2019
048af5b
Improve phpdoc for methods
westonruter Jan 15, 2019
c0800de
Add phpdoc return tags
westonruter Jan 15, 2019
28e4274
Use Rule[] instead of generic array for return tags
westonruter Jan 15, 2019
d2bb89b
Fix undefined index notice when property lacks value
westonruter Jan 18, 2019
a7d232a
Merge pull request #153 from xwp/add/output-formatting
sabberworm Jan 29, 2019
2c61b73
Throw UnexpectedTokenException when no property value present
westonruter Jan 29, 2019
5cf8479
Merge pull request #154 from xwp/fix/undefined-index
sabberworm Jan 29, 2019
cae9d7a
Add missing missing-property-value.css file
westonruter Jan 29, 2019
b08df82
Merge pull request #155 from xwp/fix/undefined-index
sabberworm Jan 29, 2019
5785554
Merge branch 'master' of github.com:sabberworm/PHP-CSS-Parser into up…
westonruter Jan 29, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ matrix:
dist: precise
sudo: false
before_script: rm composer.lock && composer install
script: ./vendor/phpunit/phpunit/phpunit
script: ./vendor/bin/phpunit --coverage-clover build/coverage/xml
after_script: ./vendor/bin/codacycoverage clover build/coverage/xml

3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
"phpunit/phpunit": "~4.8",
"codacy/coverage": "^1.4"
},
"autoload": {
"psr-0": { "Sabberworm\\CSS": "lib/" }
Expand Down
279 changes: 278 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading