-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (48 loc) · 1.33 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
{
"name": "pazakharov/yii2-selenium-tools",
"description": "Usefull tools for using with selenium automation",
"keywords": [
"yii2",
"selenium",
"automation",
"webdriver",
"bots"
],
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Zakharov\\Yii2SeleniumTools\\": "Src/",
"Zakharov\\Yii2SeleniumTools\\Tests\\": "Tests/"
}
},
"authors": [
{
"name": "Pavel Zakharov",
"email": "pavelz@internet.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"yidas/yii2-composer-bower-skip": "~2.0.13",
"yiisoft/yii2": "~2.0.45",
"yiithings/yii2-dotenv": "^1.0",
"sapistudio/seleniumstealth": "^1.0",
"ramsey/uuid": "^4.2",
"php-webdriver/webdriver": "^1.12",
"spatie/crawler": "^6.0"
},
"require-dev": {
"codeception/codeception": "^4.2",
"codeception/module-yii2": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0.0",
"yiisoft/yii2-gii": "^2.2",
"squizlabs/php_codesniffer": "3.*"
},
"scripts":{
"phpcs":"phpcs --standard=./phpcs.xml ./",
"phpcbf":"phpcbf --standard=./phpcs.xml ./"
}
}