forked from Leko/php-json-schema-faker
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
51 lines (51 loc) · 1.19 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
{
"name": "koriym/json-schema-faker",
"description": "Generates fake JSON with JSON schema",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Leko",
"email": "leko.noor@gmail.com"
},
{
"name": "Akhito Koriyama",
"email": "akihito.koriyama@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-mbstring": "*",
"fakerphp/faker": "^1.13"
},
"require-dev": {
"justinrainbow/json-schema": "^6.0",
"doctrine/coding-standard": "^12",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"JSONSchemaFaker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JSONSchemaFaker\\Test\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"tests": ["@cs", "@test"],
"cs": "./vendor/bin/phpcs",
"cs-fix": "./vendor/bin/phpcbf src tests"
},
"bin": [
"bin/fakejsons"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}