-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.09 KB
/
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
39
40
41
42
43
{
"name": "rem42/scraper",
"description": "API Scraper website",
"license": "MIT",
"authors": [
{
"name": "rem42",
"email": "[email protected]",
"homepage": "https://remy.ovh"
}
],
"require": {
"php": "^8.1",
"symfony/http-client-contracts": "^3.5",
"symfony/serializer-pack": "^1.3"
},
"require-dev": {
"rem42/php-cs-fixer-config": "^3.6",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6"
},
"suggest": {
"ext-json": "If you need to support JSON format",
"ext-simplexml": "If you need to support SimpleXML format",
"ext-soap": "If you need to support Soap request"
},
"autoload": {
"psr-4": {
"Scraper\\Scraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scraper\\Scraper\\Tests\\": "tests/"
}
},
"scripts": {
"static-analysis": "./vendor/bin/phpstan analyse src --level=max --no-progress -vvv",
"code-style-check": "./vendor/bin/php-cs-fixer fix --dry-run --verbose",
"code-style-fix": "./vendor/bin/php-cs-fixer fix --using-cache=no",
"unit-test": "./vendor/bin/phpunit"
}
}