-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 961 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
39
{
"name": "rem42/scraper-allocine",
"description": "Allocine website Scraper",
"license": "MIT",
"authors": [
{
"name": "rem42",
"email": "[email protected]",
"homepage": "https://remy.ovh"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"rem42/scraper": "^3.0",
"symfony/serializer-pack": "^1.1"
},
"require-dev": {
"rem42/php-cs-fixer-config": "^3.4",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Scraper\\ScraperAllocine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scraper\\ScraperAllocine\\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"
}
}