Skip to content

Commit 2edf438

Browse files
committed
- README.md cleanups
1 parent 09df58e commit 2edf438

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

README.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
PHP Html Parser
22
==========================
33

4-
[![Build Status](https://travis-ci.org/paquettg/php-html-parser.png)](https://travis-ci.org/paquettg/php-html-parser)
5-
[![Coverage Status](https://coveralls.io/repos/paquettg/php-html-parser/badge.png)](https://coveralls.io/r/paquettg/php-html-parser)
6-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/paquettg/php-html-parser/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/paquettg/php-html-parser/?branch=master)
7-
84
PHPHtmlParser is a simple, flexible, html parser which allows you to select tags using any css selector, like jQuery. The goal is to assist in the development of tools which require a quick, easy way to scrap html, whether it's valid or not!
95

6+
Due to being abandoned by the original developer, I have decided to fork it and maintain minimal functionality of this library in light of ongoing changes in the PHP language.
7+
108
Install
119
-------
1210

1311
Install the latest version using composer.
1412

1513
```bash
16-
$ composer require paquettg/php-html-parser
14+
$ composer require baseciq/php-html-parser
1715
```
1816

19-
This package can be found on [packagist](https://packagist.org/packages/paquettg/php-html-parser) and is best loaded using [composer](http://getcomposer.org/). We support php 7.2, 7.3, and 7.4.
17+
This package can be found on [packagist](https://packagist.org/packages/baseciq/php-html-parser) and is best loaded using [composer](http://getcomposer.org/). We support php 7.2, 7.3, and 7.4.
2018

2119
Basic Usage
2220
-----
@@ -36,13 +34,6 @@ echo $a->text; // "click here"
3634

3735
The above will output "click here". Simple, no? There are many ways to get the same result from the DOM, such as `$dom->getElementsbyTag('a')[0]` or `$dom->find('a', 0)`, which can all be found in the tests or in the code itself.
3836

39-
Support PHP Html Parser Financially
40-
--------------
41-
42-
Get supported Monolog and help fund the project with the [Tidelift Subscription](https://tidelift.com/subscription/pkg/packagist-paquettg-php-html-parser?utm_source=packagist-paquettg-php-html-parser&utm_medium=referral&utm_campaign=enterprise).
43-
44-
Tidelift delivers commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use.
45-
4637
Loading Files
4738
------------------
4839

0 commit comments

Comments
 (0)