-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 956 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 956 Bytes
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
{
"name": "hexlet/php-package",
"version": "0.0.1",
"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"
}
},
"autoload-dev": {
"psr-4": {
"Php\\Package\\Tests\\": "tests"
}
},
"require": {
"illuminate/collections": "^12.0",
"nesbot/carbon": "^3.9",
"symfony/string": "^7.2"
},
"require-dev": {
"psy/psysh": "@stable",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3",
"symfony/var-dumper": "^7.2",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "*",
"phpstan/phpstan": "^2.1"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}