-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
45 lines (45 loc) · 1.54 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
{
"name": "duncan3dc/dusk",
"type": "library",
"description": "Use Laravel Dusk without the full Laravel framework",
"keywords": ["laravel", "browser", "engine", "screen", "scraping"],
"homepage": "https://github.com/duncan3dc/dusk",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "git@duncanc.co.uk",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"require": {
"php-webdriver/webdriver": "^1.0",
"laravel/dusk": "^6.0",
"phpunit/phpunit": "^9.5.13 || ^10.0 || ^11.0",
"symfony/process": "^5.4 || ^6.0",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"duncan3dc/object-intruder": "^0.3 || ^1.0",
"maglnet/composer-require-checker": "^2.1 || ^3.0 || ^4.0",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-mockery": "^1.1",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-4": {"duncan3dc\\Laravel\\": "src/"}
},
"autoload-dev": {
"psr-4": {"duncan3dc\\LaravelTests\\": "tests/"}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/composer-require-checker",
"vendor/bin/phpstan analyse --level=max --configuration=phpstan-src.neon src",
"vendor/bin/phpstan analyse --level=max --configuration=phpstan-tests.neon tests",
"vendor/bin/phpcs --standard=phpcs.xml",
"@composer validate --strict"
]
}
}