This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "atumaikin/electrolux",
"type": "project",
"description": "",
"require": {
"php": "^8.0.0",
"ext-json": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"clue/socket-raw": "^1.5",
"guzzlehttp/guzzle": "^7.3",
"myclabs/php-enum": "^1.8",
"sentry/sdk": "^3.1",
"sentry/sentry-symfony": "^4.0",
"symfony/cache": "^5.2",
"symfony/console": "^5.2",
"symfony/dotenv": "^5.2",
"symfony/flex": "^1.12",
"symfony/form": "^5.2",
"symfony/framework-bundle": "^5.2",
"symfony/monolog-bundle": "^3.6",
"symfony/property-access": "^5.2",
"symfony/validator": "^5.2",
"symfony/yaml": "^5.2"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin",
"optimize-autoloader": true
},
"license": "MIT",
"authors": [
{
"name": "Александр Тумайкин",
"email": "AATumaykin@tsum.ru"
}
],
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*"
},
"conflict": {
"symfony/symfony": "*"
}
}