-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 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
{
"name": "tochka-developers/entity-definition",
"description": "Make definition of classes and methods",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Babushkin Pavel",
"email": "darkdarin@tochka.com"
}
],
"require": {
"php": "8.2.*|8.3.*",
"jetbrains/phpstorm-attributes": "^1.0",
"psr/container": "^1.0|^2.0",
"tochka-developers/docblock-parser": "^1.0",
"tochka-developers/types": "^1.0"
},
"require-dev": {
"illuminate/support": "^10.0|^11.0",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"Tochka\\EntityDefinition\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TochkaTest\\EntityDefinition\\": "tests/"
}
},
"extra": {
"hyperf": {
"config": "Tochka\\EntityDefinition\\ConfigProvider"
},
"laravel": {
"providers": [
"Tochka\\EntityDefinition\\ServiceProvider"
]
}
},
"scripts": {
"pint": "vendor/bin/pint",
"psalm": "vendor/bin/psalm --output-format=phpstorm --no-cache"
}
}