-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
130 lines (130 loc) · 3.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"type": "project",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"name": "volmarg/job-searcher-bundle",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Volmarg/lingua-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/company-data-provider-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/keywords-finder-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/geo-data-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/voltigo-backend-bridge"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/web-scrapper-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/search-engine-provider-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/data-parser-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/email-validator-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Volmarg/proxy-provider-bridge"
}
],
"require": {
"php": ">=8.1.0",
"ext-ctype": "*",
"ext-iconv": "*",
"beberlei/doctrineextensions": "master",
"composer/package-versions-deprecated": "1.11.99.4",
"doctrine/doctrine-bundle": "v2.10.1",
"doctrine/doctrine-fixtures-bundle": "^3.6",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "v2.14.1",
"egulias/email-validator": "^3.2",
"fakerphp/faker": "^1.19",
"guzzlehttp/guzzle": "^7.3",
"lexik/jwt-authentication-bundle": "v2.18.1",
"myclabs/deep-copy": "1.10.0",
"php-amqplib/rabbitmq-bundle": "^2.11",
"sebastian/comparator": "^4.0",
"sensio/framework-extra-bundle": "v6.2.0",
"spatie/crawler": "^7.0.0",
"symfony/console": "6.0.*",
"symfony/debug-bundle": "6.0.*",
"symfony/dotenv": "6.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.0.*",
"symfony/google-mailer": "^6.2",
"symfony/lock": "^6.1",
"symfony/mailer": "^6.1",
"symfony/monolog-bundle": "^3.7",
"symfony/proxy-manager-bridge": "6.0.*",
"symfony/runtime": "^6.0",
"symfony/serializer": "6.0.*",
"symfony/validator": "6.0.*",
"symfony/yaml": "6.0.*",
"thiagoalessio/tesseract_ocr": "^2.12",
"volmarg/company-data-provider-bundle": "@dev",
"volmarg/data-parser-bundle": "@dev",
"volmarg/email-validator-bundle": "@dev",
"volmarg/geo-data-bundle": "@dev",
"volmarg/keywords-finder-bundle": "@dev",
"volmarg/lingua-bundle": "@dev",
"volmarg/proxy-provider-bridge": "@dev",
"volmarg/voltigo-backend-bridge": "@dev",
"volmarg/web-scrapper-bundle": "@dev",
"wnx/faker-swiss-locations": "dev-main#5a94ea51eb3bd9b7646d5fc9f9c9b4bf6cb089d5"
},
"require-dev": {
"symfony/maker-bundle": "^1.34",
"symfony/var-dumper": "6.0.*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": false,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"JobSearcher\\": "src/",
"Wnx\\FakerSwissCities\\": "vendor/wnx/faker-swiss-locations/src"
}
},
"autoload-dev": {
"psr-4": {
"JobSearcher\\Tests\\": "tests/"
}
},
"scripts": {},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "6.0.*"
}
}
}