-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.35 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
{
"name": "yediyuz/yediyuz-helpers",
"description": "Yediyuz Development Helpers",
"license": "MIT",
"homepage": "https://github.com/yediyuz/yediyuz-helpers",
"autoload": {
"psr-4": {
"Yediyuz\\Helpers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yediyuz\\Helpers\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mert Aşan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*"
},
"require-dev": {
"yediyuz/dev-tools": "dev-master",
"pestphp/pest": "^2.2.3",
"pestphp/pest-plugin-mock": "^2.0.0",
"phpstan/phpstan": "^1.10.8",
"phpunit/phpcov": "^9.0.0",
"spatie/pest-plugin-test-time": "^2.0.0"
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test": "vendor/bin/pest --colors=always --parallel",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:styles": "vendor/bin/phpstan analyse --ansi",
"test:styles:pro": "vendor/bin/phpstan analyse --pro --fix --watch",
"test:coverage": "@test --coverage-php ./coverage/cov/default.cov --coverage-html coverage/html/default",
"test:all": [
"@test:lint",
"@test:styles",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}