-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.74 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
{
"name": "johnykvsky/dummygenerator",
"type": "library",
"description": "Dummy / fake data generator for modern PHP",
"keywords": [
"dummy",
"generator",
"faker",
"fake data"
],
"license": "MIT",
"authors": [
{
"name": "Johny Kvsky",
"homepage": "https://github.com/johnykvsky"
}
],
"require": {
"php": "^8.3",
"symfony/deprecation-contracts": "^2.2 || ^3.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.4.2",
"phpstan/phpstan": "^2.0.3",
"phpunit/phpunit": "^11.5.0",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.11.2"
},
"autoload": {
"psr-4": {
"DummyGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DummyGenerator\\Test\\": "test/"
}
},
"suggest": {
"ext-intl": "Required for better transliteration i.e. in Internet Extension",
"ext-mbstring": "Required for multibyte Unicode string functionality."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"bin-dir": "vendor-bin"
},
"scripts": {
"test": "vendor-bin/phpunit --no-coverage",
"test-coverage": "vendor-bin/phpunit",
"test-clover": "vendor-bin/phpunit --no-coverage --coverage-clover .build/clover.xml",
"check-style": "vendor-bin/phpcs -p --standard=phpcs.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1",
"fix-style": "vendor-bin/phpcbf -p --standard=phpcs.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1",
"phpstan": "vendor-bin/phpstan analyse src --level=8"
}
}