-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 928 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "klp/contentextractor",
"description": "extract usefully data or text from web page",
"keywords": [
"extractor",
"article",
"html2article"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kenny Luo",
"email": "luogenji@hotmail.com"
}],
"require":
{
"php": ">=5.6",
"illuminate/support": "5.2.*|5.3.*|5.4.*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev":
{
"illuminate/container": "5.2.*|5.3.*|5.4.*",
"illuminate/config": "5.2.*|5.3.*|5.4.*"
},
"autoload":
{
"psr-4":
{
"KLP\\ContentExtractor\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config":
{
"sort-packages": true,
"secure-http": false
},
"minimum-stability": "dev",
"prefer-stable": true
}