Skip to content
This repository was archived by the owner on Mar 26, 2022. It is now read-only.

Commit 10f1088

Browse files
committed
init commit
1 parent 081a7d8 commit 10f1088

File tree

5 files changed

+1829
-0
lines changed

5 files changed

+1829
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/vendor
2+
composer.phar
3+
composer.lock
4+
.DS_Store

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "yangqi/htmldom",
3+
"type": "library",
4+
"description": "Simple Html Dom Parser for Laravel 4",
5+
"keywords": ["laravel", "html parser"],
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "yangqi",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": ">=5.3.0"
15+
},
16+
"autoload": {
17+
"psr-0": {
18+
"Yangqi\\Htmldom": "src/"
19+
}
20+
},
21+
"minimum-stability": "dev"
22+
}

0 commit comments

Comments
 (0)