-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.76 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
{
"name": "phonyland/framework",
"description": "\ud83d\ude43 Phony. Real-like Fake Data Generation Framework",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"framework",
"phony",
"random",
"faker",
"ngram",
"seeding",
"generator"
],
"authors": [
{
"name": "Yunus Emre Delig\u00f6z",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"phonyland-data/phony-generator-coin-en": "dev-master",
"phonyland/generator-manager": "dev-master",
"phonyland/phony-generator-number": "dev-master",
"phonyland/phony-generator-sequence": "dev-master",
"softcreatr/jsonpath": "^0.8.0"
},
"require-dev": {
"phonyland/dev-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Phonyland\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phonyland\\Framework\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phonyland/generator-manager": true,
"pestphp/pest-plugin": true,
"infection/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction"
],
"coverage": "vendor/bin/pest --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"coveragep": "vendor/bin/pest --parallel --coverage --colors=always --order-by=random --configuration=phpunit.xml.dist",
"infection": "vendor/bin/infection --test-framework=pest --show-mutations --threads=max --min-msi=100 --min-covered-msi=100 --ansi",
"lint": "@pint",
"lintc": "vendor/bin/pint && (git diff-index --quiet HEAD || (git add . && git commit -m 'chore: Fix styling'))",
"pest": "vendor/bin/pest --colors=always --order-by=random --configuration=phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon.dist",
"pint": "vendor/bin/pint --config=vendor/phonyland/dev-tools/src/pint.json",
"profile": "vendor/bin/pest --profile --colors=always --order-by=random --configuration=phpunit.xml.dist",
"test": "@pest",
"testp": "vendor/bin/pest --parallel --colors=always --order-by=random --configuration=phpunit.xml.dist",
"type": "vendor/bin/pest --type-coverage --colors=always --order-by=random --configuration=phpunit.xml.dist"
}
}