Skip to content

Commit b523b1d

Browse files
committed
Added tifelift verbage
1 parent 7d04687 commit b523b1d

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 3.1.0
9+
10+
- Updated to include Tidelift subscription option.
11+
- Removed php-coverall.
12+
- Removed Guzzle 6 Adapter.
13+
- Added support for Guzzle 7.
14+
815
## 3.0.1
916

1017
### Changed
@@ -37,6 +44,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3744
- Removed `load()` method in Dom object.
3845
- Removed support for php 7.1.
3946

47+
## 2.2.1
48+
49+
### Added
50+
- Added php_cs.
51+
- Added support for PSR7 requests.
52+
- Added the attribute type dto.
53+
4054
## 2.2.0
4155

4256
### Added

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PHP Html Parser
22
==========================
33

4-
Version 3.0.1
4+
Version 3.0.2
55

66
[![Build Status](https://travis-ci.org/paquettg/php-html-parser.png)](https://travis-ci.org/paquettg/php-html-parser)
77
[![Coverage Status](https://coveralls.io/repos/paquettg/php-html-parser/badge.png)](https://coveralls.io/r/paquettg/php-html-parser)
@@ -20,7 +20,7 @@ $ composer require paquettg/php-html-parser
2020

2121
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.
2222

23-
Usage
23+
Basic Usage
2424
-----
2525

2626
You can find many examples of how to use the dom parser and any of its parts (which you will most likely never touch) in the tests directory. The tests are done using PHPUnit and are very small, a few lines each, and are a great place to start. Given that, I'll still be showing a few examples of how the package should be used. The following example is a very simplistic usage of the package.
@@ -38,6 +38,13 @@ echo $a->text; // "click here"
3838

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

41+
Support PHP Html Parser Financially
42+
--------------
43+
44+
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).
45+
46+
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.
47+
4148
Loading Files
4249
------------------
4350

0 commit comments

Comments
 (0)