forked from mylukin/Textractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 867 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 867 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
{
"name": "iceqi/textractor",
"description": "An efficient class library for extracting text from HTML.",
"keywords": [
"extractor",
"article",
"html2article"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lukin",
"email": "my@lukin.cn"
}
],
"require": {
"php": ">=5.6",
"illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"illuminate/container": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/config": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*"
},
"autoload": {
"psr-4": {
"Lukin\\Textractor\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"sort-packages": true,
"secure-http": false
},
"minimum-stability": "dev",
"prefer-stable": true
}