-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.31 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": "shimabox/screru",
"description": "It has a function to supplement php-webdriver",
"keywords": ["php-webdriver", "selenium", "screenshot", "phpunit"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/shimabox/screru",
"authors": [
{
"name": "shimabox",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6 || ~7.0",
"facebook/webdriver": "^1.7",
"vlucas/phpdotenv": "^2.4",
"shimabox/url-status": "^1.0",
"shimabox/selenium-downloader": "~0.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ~5.0",
"mobiledetect/mobiledetectlib": "^2.8",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"SMB\\Screru\\": "src/"
},
"files": [
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"SMB\\Screru\\Tests\\": "tests/unit",
"SMB\\Screru\\Tests\\Functional\\": "tests/functional"
}
},
"scripts": {
"init-env": "php -r \"file_exists('.env') || copy('.env.default', '.env');\"",
"post-install-cmd": [
"@init-env"
],
"post-update-cmd": [
"@init-env"
]
}
}