-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 983 Bytes
/
composer.json
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
{
"description": "A highly extendible, dependency free Crawler for HTML, PDFS or any other type of Documents.",
"name": "nadar/crawler",
"type": "library",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"ext-curl" : "*"
},
"autoload": {
"psr-4": {
"Nadar\\Crawler\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nadar\\Crawler\\Tests\\" : "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"smalot/pdfparser": "^2.1",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "^3.2"
},
"suggest": {
"smalot/pdfparser" : "In order to use the PdfParser the smalot/pdfparser library is required."
},
"scripts": {
"phpstan" : "vendor/bin/phpstan -v",
"phpcsfixer" : "vendor/bin/php-cs-fixer fix"
}
}