-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.1 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": "plozmun/behat-faker-extension",
"description": "Behat Faker Extension",
"type": "behat-extension",
"license": "MIT",
"authors": [
{
"name": "Pablo Lozano",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2| ^8.0",
"behat/behat": "^3.10",
"fakerphp/faker": "^1.17",
"symfony/expression-language": "^4.4|^5.4|^6.0"
},
"autoload": {
"psr-4": {
"Plozmun\\FakerExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"squizlabs/php_codesniffer": "^3.6",
"symfony/process": "^5.4"
},
"scripts": {
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon"
],
"tests": [
"vendor/bin/behat -f progress --strict -vvv --no-interaction --colors"
]
}
}