-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
74 lines (74 loc) · 2.09 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "brain/faker",
"description": "Faker (phpfaker/faker) for WordPress via Brain Monkey",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"wordpress",
"faker",
"test data",
"unit tests data",
"fake data",
"testing",
"test",
"mockery",
"patchwork",
"mock",
"mock functions",
"runkit",
"redefinition",
"monkey patching",
"interception"
],
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]",
"homepage": "https://gmazzap.me",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Brain-WP/BrainFaker/issues",
"source": "https://github.com/Brain-WP/BrainFaker"
},
"require": {
"php": ">=7.2",
"brain/monkey": "^2.3.1",
"fakerphp/faker": "^1.20"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"inpsyde/php-coding-standards": "^1.0"
},
"autoload": {
"files": [
"inc/functions.php"
],
"psr-4": {
"Brain\\Faker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Faker\\Tests\\": [
"tests/src/",
"tests/cases/unit"
]
}
},
"scripts": {
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"tests:coverage": "@php ./vendor/phpunit/phpunit/phpunit --coverage-clover=coverage.xml",
"phpcs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.2-",
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --standard=PHPCompatibility --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.2-"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}