-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
146 lines (146 loc) · 5.01 KB
/
Copy pathcomposer.json
File metadata and controls
146 lines (146 loc) · 5.01 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "components-web-app/api-components-bundle",
"type": "symfony-bundle",
"description": "Creates a flexible API for a website's structure, reusable components and common functionality.",
"license": "MIT",
"homepage": "https://cwa.rocks",
"authors": [
{
"name": "Daniel West",
"email": "daniel@silverback.is",
"homepage": "https://silverback.is"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/silverbackdan/contexts"
}
],
"require": {
"php": ">=8.5",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"api-platform/core": "^4.2",
"cocur/slugify": "^4.1",
"doctrine/dbal": "^4.0",
"doctrine/doctrine-bundle": "^3.2",
"doctrine/doctrine-migrations-bundle": "^3.7",
"doctrine/orm": "^3.6",
"imagine/imagine": "^1.3",
"lcobucci/clock": "^2.0|^3.0",
"lexik/jwt-authentication-bundle": "^3.1",
"liip/imagine-bundle": "^2.7",
"nelmio/cors-bundle": "^2.2",
"ocramius/package-versions": "^2.1",
"phpdocumentor/reflection-docblock": "^5.3",
"ramsey/collection": "^1.2",
"ramsey/uuid": "^4.5",
"ramsey/uuid-doctrine": "^2.1",
"symfony/asset": "^7.4 || ^8.0",
"symfony/console": "^7.4 || ^8.0",
"symfony/doctrine-bridge": "^7.4 || ^8.0",
"symfony/event-dispatcher": "^7.4 || ^8.0",
"symfony/expression-language": "^7.4 || ^8.0",
"symfony/form": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/mailer": "^7.4 || ^8.0",
"symfony/property-access": "^7.4 || ^8.0",
"symfony/property-info": "^7.4 || ^8.0",
"symfony/security-bundle": "^7.4 || ^8.0",
"symfony/serializer": "^7.4 || ^8.0",
"symfony/twig-bundle": "^7.4 || ^8.0",
"symfony/type-info": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0",
"symfony/var-exporter": "^7.4 || ^8.0",
"twig/cssinliner-extra": "^3.0.3",
"twig/extra-bundle": "^3.0.3",
"twig/inky-extra": "^3.0.3",
"twig/twig": "^3.4.3"
},
"require-dev": {
"behat/behat": "^3.13",
"behat/mink": "*",
"behatch/contexts": "dev-master",
"dama/doctrine-test-bundle": "^8.6",
"doctrine/doctrine-fixtures-bundle": "^4.3",
"friends-of-behat/mink-browserkit-driver": "^1.6",
"friends-of-behat/mink-extension": "^2.7",
"friends-of-behat/symfony-extension": "^2.4",
"friendsofphp/php-cs-fixer": "^v3",
"infection/infection": "^0.31.1",
"justinrainbow/json-schema": "^5.4",
"league/flysystem": "^3.11",
"league/flysystem-memory": "^3.0.0",
"monolog/monolog": "^3.0",
"phpspec/prophecy": "^1.8",
"phpstan/extension-installer": "^1.4",
"phpstan/phpdoc-parser": "^2.1",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-doctrine": "^1.5",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^12.1",
"rector/rector": "^0.18.6",
"roave/security-advisories": "dev-master",
"symfony/browser-kit": "^7.4 || ^8.0",
"symfony/css-selector": "^7.4 || ^8.0",
"symfony/dotenv": "^7.4 || ^8.0",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/maker-bundle": "^1.0",
"symfony/mercure": "^0.6.2",
"symfony/mercure-bundle": "^0.3.5",
"symfony/messenger": "^7.4 || ^8.0",
"symfony/monolog-bundle": "^3.8",
"symfony/phpunit-bridge": "^7.4 || ^8.0",
"symfony/stopwatch": "^7.4 || ^8.0",
"symfony/web-profiler-bundle": "^7.4 || ^8.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Silverback\\ApiComponentsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Silverback\\ApiComponentsBundle\\Features\\Bootstrap\\" : "features/bootstrap/",
"Silverback\\ApiComponentsBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"allow-contrib": false,
"root-dir": "tests/Functional/app",
"require": "^7.4 || ^8.0"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"conflict": {
"willdurand/negotiation": "^2",
"symfony/serializer": "<=6.1.2",
"symfony/var-exporter": "<6.1",
"symfony/web-link": "<=6.0",
"doctrine/collections": "<1.7"
}
}