forked from hexlet-boilerplates/php-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 802 Bytes
/
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
{
"name": "hexlet/php-package",
"bin": ["bin/php-package"],
"type": "library",
"authors": [
{
"name": "Kirill Mokevnin",
"email": "mokevnin@gmail.com"
}
],
"description": "hexlet php-package",
"license": "MIT",
"scripts": {
"test": "phpunit tests"
},
"autoload": {
"psr-4": {
"Php\\Package\\": "src",
"Php\\Package\\Tests\\": "tests"
}
},
"require": {
"tightenco/collect": "^5.6",
"nesbot/carbon": "^2.32.2",
"symfony/string": "^5.1",
"phpstan/phpstan": "^0.12.65"
},
"require-dev": {
"psy/psysh": "@stable",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/extension-installer": "^1.0",
"symfony/var-dumper": "^4.0",
"phpunit/phpunit": "^9.1.3",
"squizlabs/php_codesniffer": "^3.5.5"
}
}