-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
120 lines (120 loc) 路 3.56 KB
/
Copy pathcomposer.json
File metadata and controls
120 lines (120 loc) 路 3.56 KB
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
{
"name": "josego85/pdf-content-search",
"description": "A Symfony application to search content within PDF files using Elasticsearch and Vue.js",
"type": "project",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"ext-ctype": "*",
"ext-iconv": "*",
"doctrine/dbal": "4.4.1",
"doctrine/doctrine-bundle": "3.1.1",
"doctrine/doctrine-migrations-bundle": "3.5.0",
"doctrine/orm": "3.6.2",
"elasticsearch/elasticsearch": "9.2.0",
"patrickschur/language-detection": "5.3.1",
"phpdocumentor/reflection-docblock": "5.6.6",
"phpstan/phpdoc-parser": "2.3.2",
"symfony/asset": "7.4.8",
"symfony/asset-mapper": "7.4.11",
"symfony/console": "7.4.11",
"symfony/doctrine-messenger": "7.4.6",
"symfony/dotenv": "7.4.11",
"symfony/expression-language": "7.4.8",
"symfony/flex": "2.10.0",
"symfony/form": "7.4.9",
"symfony/framework-bundle": "7.4.11",
"symfony/http-client": "7.4.9",
"symfony/intl": "7.4.8",
"symfony/mailer": "7.4.12",
"symfony/mime": "7.4.12",
"symfony/monolog-bundle": "3.10.0",
"symfony/notifier": "7.4.8",
"symfony/process": "7.4.11",
"symfony/property-access": "7.4.8",
"symfony/property-info": "7.4.8",
"symfony/runtime": "7.4.12",
"symfony/security-bundle": "7.4.12",
"symfony/serializer": "7.4.10",
"symfony/string": "7.4.11",
"symfony/translation": "7.4.10",
"symfony/twig-bundle": "7.4.8",
"symfony/validator": "7.4.10",
"symfony/web-link": "7.4.8",
"symfony/webpack-encore-bundle": "2.3.0",
"symfony/yaml": "7.4.12",
"twig/extra-bundle": "3.24.0",
"twig/twig": "3.27.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"bump-after-update": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff --config=.php-cs-fixer.dist.php",
"cs-fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan": "phpstan analyse",
"rector": "rector process",
"rector-check": "rector process --dry-run",
"test": "vendor/bin/phpunit",
"ci": ["@cs-check", "@phpstan", "@rector-check", "@test"],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
},
"post-install-cmd": ["@auto-scripts"],
"post-update-cmd": ["@auto-scripts"]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.4.*"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.94.2",
"phpstan/phpstan": "2.1.45",
"phpstan/phpstan-doctrine": "2.0.20",
"phpstan/phpstan-symfony": "2.0.15",
"phpunit/phpunit": "9.6.34",
"rector/rector": "2.3.9",
"symfony/browser-kit": "7.4.8",
"symfony/css-selector": "7.4.9",
"symfony/debug-bundle": "7.4.8",
"symfony/maker-bundle": "1.65.1",
"symfony/phpunit-bridge": "7.4.8",
"symfony/stopwatch": "7.4.8",
"symfony/web-profiler-bundle": "7.4.12"
}
}