-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.18 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
75
76
{
"name": "loophp/typed-generators",
"description": "Generate random typed values and in any shape.",
"license": "MIT",
"type": "library",
"keywords": [
"generators"
],
"readme": "README.md",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com",
"homepage": "https://not-a-number.io",
"role": "author"
}
],
"homepage": "https://github.com/loophp/typed-generators",
"support": {
"issues": "https://github.com/loophp/typed-generators/issues",
"source": "https://github.com/loophp/typed-generators"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 7.4"
},
"require-dev": {
"ext-pcov": "*",
"drupol/php-conventions": "^6",
"fakerphp/faker": "^1.19",
"infection/infection": "^0.29",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.1"
},
"autoload": {
"psr-4": {
"loophp\\TypedGenerators\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"benchmarks\\loophp\\TypedGenerators\\": "./tests/benchmarks/",
"tests\\loophp\\TypedGenerators\\": "./tests/unit/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"grumphp": {
"disable-plugin": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2"
}
}