generated from phonyland-data/generator-data-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.84 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
{
"name": "phonyland-data/phony-generator-coin-en",
"description": "Coin Generator (en) for \ud83d\ude43 Phony Framework",
"license": "MIT",
"type": "phony-generator-data",
"keywords": [
"php",
"framework",
"phony",
"random",
"faker",
"ngram",
"seeding",
"generator",
"template"
],
"authors": [
{
"name": "Yunus Emre Delig\u00f6z",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"phonyland/phony-generator-coin": "dev-master"
},
"require-dev": {
"phonyland/dev-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phonyland/generator-manager": true,
"phpstan/extension-installer": true,
"symfony/thanks": true
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@normalize",
"@validate",
"@thanks"
],
"lint": "php-cs-fixer fix -v",
"normalize": "@composer normalize --ansi --no-interaction --quiet",
"test": [
"@test:lint",
"@test:types",
"@test:unit",
"@test:mutations"
],
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:mutations": "infection --test-framework=pest --show-mutations",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"thanks": "@composer thanks --ansi --no-interaction --quiet",
"validate": "@composer validate --strict --ansi --no-interaction"
}
}