-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.14 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
{
"name": "schalkt/faker",
"description": "Random data generator for PHP",
"keywords": [
"faker",
"php",
"simple",
"easy"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tamas Schalk",
"homepage": "https://github.com/schalkt"
}
],
"require": {
"php": "8.*"
},
"require-dev": {
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"Schalkt\\Faker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Schalkt\\Faker\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"coverage" : [
"phpdbg -qrr ./vendor/bin/phpunit --coverage-xml ./tests/coverage/xml",
"phpdbg -qrr ./vendor/bin/phpunit --coverage-html ./tests/coverage/html",
"phpdbg -qrr ./vendor/bin/phpunit --log-junit ./tests/report.xml"
],
"demo": [
"php ./examples/demo.php"
],
"readme": [
"php ./examples/readme.php"
]
}
}