-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.09 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
{
"name": "vjik/_____",
"type": "library",
"description": "_____",
"keywords": [
"_____"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/vjik/_____/issues?state=open",
"source": "https://github.com/vjik/_____"
},
"minimum-stability": "stable",
"require": {
"php": "^8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"maglnet/composer-require-checker": "^4.14",
"phpunit/phpunit": "^10.5",
"roave/infection-static-analysis-plugin": "^1.35",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"Vjik\\_____\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vjik\\_____\\Tests\\": "tests"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"bump-after-update": "dev",
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}