Skip to content

Commit 040b96d

Browse files
committed
Change name references and note original project
1 parent 9405196 commit 040b96d

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
PHP Html Parser
2-
==========================
2+
===============
33

4-
Version 1.7.0
4+
Note: this is a fork of [paquettg/php-html-parser](https://github.com/paquettg/php-html-parser). The project is in passive maintenance only. Pull requests are accepted. If you are willing to maintain this package, please create an issue and let us know.
55

6-
[![Build Status](https://travis-ci.org/paquettg/php-html-parser.png)](https://travis-ci.org/paquettg/php-html-parser)
7-
[![Coverage Status](https://coveralls.io/repos/paquettg/php-html-parser/badge.png)](https://coveralls.io/r/paquettg/php-html-parser)
8-
[![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)
6+
[![Build Status](https://travis-ci.org/thesoftwarefanatics/php-html-parser.png)](https://travis-ci.org/thesoftwarefanatics/php-html-parser)
7+
[![Coverage Status](https://coveralls.io/repos/thesoftwarefanatics/php-html-parser/badge.png)](https://coveralls.io/r/thesoftwarefanatics/php-html-parser)
8+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/thesoftwarefanatics/php-html-parser/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/thesoftwarefanatics/php-html-parser/?branch=master)
99

1010
PHPHtmlParser is a simple, flexible, html parser which allows you to select tags using any css selector, like jQuery. The goal is to assiste in the development of tools which require a quick, easy way to scrap html, whether it's valid or not! This project was original supported by [sunra/php-simple-html-dom-parser](https://github.com/sunra/php-simple-html-dom-parser) but the support seems to have stopped so this project is my adaptation of his previous work.
1111

1212
Install
1313
-------
1414

15-
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 5.6, 7.0, and hhvm 2.3.
15+
This package can be found on [packagist](https://packagist.org/packages/thesoftwarefanatics/php-html-parser) and is best loaded using [composer](http://getcomposer.org/). We support php 5.6, 7.0, and hhvm 2.3.
1616

1717
Usage
1818
-----

composer.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
2-
"name": "paquettg/php-html-parser",
2+
"name": "thesoftwarefanatics/php-html-parser",
33
"type": "library",
4-
"version": "1.7.0",
54
"description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
65
"keywords": ["html", "dom", "parser"],
7-
"homepage": "https://github.com/paquettg/php-html-parser",
6+
"homepage": "https://github.com/thesoftwarefanatics/php-html-parser",
87
"license": "MIT",
98
"authors": [
109
{
1110
"name": "Gilles Paquette",
1211
"email": "[email protected]",
1312
"homepage": "http://gillespaquette.ca"
13+
},
14+
{
15+
"name": "The Software Fanatics GmbH",
16+
"email": "[email protected]",
17+
"homepage": "https://thesoftwarefanatics.com"
1418
}
1519
],
1620
"require": {
17-
"php": ">=5.6",
21+
"php": "^5.6 || ^7.0",
1822
"paquettg/string-encode": "~0.1.0"
1923
},
2024
"require-dev": {
@@ -23,10 +27,9 @@
2327
"mockery/mockery": "~0.9.0"
2428
},
2529
"autoload": {
26-
"psr-0": {
27-
"PHPHtmlParser": "src/"
28-
}
30+
"psr-0": {
31+
"PHPHtmlParser": "src/"
32+
}
2933
},
30-
"minimum-stability": "dev",
3134
"prefer-stable": true
3235
}

0 commit comments

Comments
 (0)