-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 871 Bytes
/
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
{
"name": "jugid/auto-mate-test",
"type": "library",
"description": "UI Tests using AutoMate",
"keywords": ["AutoMate", "test", "UI"],
"license": "MIT",
"require": {
"jugid/auto-mate": "^0.6.1"
},
"authors": [
{
"name": "Jugid",
"homepage": "https://github.com/JuGid"
}
],
"autoload": {
"psr-4": {
"AutomateTest\\": "src"
},
"classmap": ["src"]
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.75"
},
"scripts": {
"all": [
"@phpstan",
"@tests"
],
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon"
],
"tests": [
"vendor/bin/phpunit --colors=always --testsuite tests --coverage-clover ./coverage.xml "
]
}
}