-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ronnie/tra-crawler",
"description": "A package to crawl TRA web receipts and return the data in necessary format",
"type": "library",
"license": "proprietary",
"autoload": {
"files": ["src/helpers.php"],
"psr-4": {
"Ronnie\\TRA\\": "src/",
"Ronnie\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Vicent Simon",
"email": "vicsimon.vs4@gmail.com"
}
],
"minimum-stability": "stable",
"archive": {
"exclude": ["/Dummy"]
},
"require": {
"php": ">=8.1",
"spatie/browsershot": "^3.57",
"symfony/dom-crawler": "^6.1",
"symfony/css-selector": "^6.1",
"illuminate/collections": "^9.0"
},
"require-dev": {
"symfony/var-dumper": "^6.1",
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.8",
"pestphp/pest": "^2.23",
"symfony/console": "^6.1"
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs --standard=phpcs.xml ./"
],
"phpmd": [
"./vendor/bin/phpmd src text phpmd.xml"
],
"phpstan": [
"./vendor/bin/phpstan analyse -l 2 ./src ./Commands"
],
"analyse": [
"@phpcs",
"@phpmd",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}