-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 854 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 854 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
{
"name": "alefcastelo/crawler",
"license": "MIT",
"description": "A package to crawler HTML pages based on schema definition",
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-intl": "*",
"spatie/browsershot": "^3.37"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/php-code-coverage": "^9.1"
},
"scripts": {
"test:unit": "phpunit --color=always tests",
"lint": "php-cs-fixer fix --ansi --verbose --show-progress=estimating",
"lint:check": "@lint --dry-run"
},
"autoload": {
"psr-4": {
"Crawler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crawler\\": "tests/"
}
}
}