This repository was archived by the owner on Nov 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.27 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.27 KB
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
{
"name": "producttrap/browser",
"type": "library",
"description": "A headless chromium browser driver for ProductTrap",
"license": "MIT",
"keywords": [
"producttrap-driver",
"browser"
],
"require": {
"php": "^8.1",
"producttrap/producttrap": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"orchestra/testbench": "^7.9",
"pestphp/pest": "^1.22.1",
"phpstan/phpstan": "^1.8.8",
"symfony/var-dumper": "^6.1.4"
},
"autoload": {
"psr-4": {
"ProductTrap\\Browser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProductTrap\\Browser\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"ProductTrap\\Browser\\BrowserServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}