-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
65 lines (65 loc) · 2.42 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
{
"name": "ekreative/uuid-extra-bundle",
"description": "Paramconverter, Normalizer and Form Type for Ramsey Uuid",
"type": "symfony-bundle",
"keywords": ["uuid", "identifier", "guid", "paramconverter", "param", "converter", "symfony", "bundle", "ramsey", "form", "normalizer", "denormalizer"],
"homepage": "https://github.com/ekreative/uuid-extra-bundle",
"license": "MIT",
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0",
"symfony/framework-bundle": "^5.4.2 || ^6.0.2",
"sensio/framework-extra-bundle": "^5.6.1 || 6.2.6",
"ramsey/uuid": "^4.2.3"
},
"authors": [
{
"name": "Fred Cox",
"email": "fred@ekreative.com"
}
],
"support": {
"issues": "https://github.com/ekreative/uuid-extra-bundle/issues",
"source": "https://github.com/ekreative/uuid-extra-bundle"
},
"minimum-stability": "stable",
"require-dev": {
"symfony/browser-kit": "^5.4.2 || ^6.0.1",
"phpunit/phpunit": "^9.5.11",
"symfony/monolog-bundle": "^3.7.1",
"symfony/form": "^5.4.2 || ^6.0.2",
"symfony/serializer": "^5.4.2 || ^6.0.2",
"symfony/yaml": "^5.4.2 || ^6.0.2",
"symfony/validator": "^5.4.2 || ^6.0.2",
"vimeo/psalm": "^4.18.1",
"psalm/plugin-phpunit": "^0.16.1",
"doctrine/coding-standard": "^9.0"
},
"conflict": {
"ramsey/collection": "<1.2.0",
"symfony/browser-kit": "<5.3.7",
"symfony/cache": "<5.3.7",
"symfony/config": "<5.3.7",
"symfony/console": "<5.3.7",
"symfony/dependency-injection": "<5.3.7",
"symfony/dom-crawler": "<5.3.7",
"symfony/error-handler": "<5.3.7",
"symfony/event-dispatcher": "<5.3.7",
"symfony/filesystem": "<5.3.7",
"symfony/finder": "<5.3.7",
"symfony/http-foundation": "<5.3.7",
"symfony/http-kernel": "<5.3.7",
"symfony/monolog-bridge": "<5.3.7",
"symfony/options-resolver": "<5.3.7",
"symfony/property-access": "<5.3.7",
"symfony/property-info": "<5.3.7",
"symfony/routing": "<5.3.7",
"symfony/var-dumper": "<5.3.7",
"symfony/var-exporter": "<5.3.7"
},
"autoload": {
"psr-4": { "Ekreative\\UuidExtraBundle\\": "src/Ekreative/UuidExtraBundle/" }
},
"autoload-dev": {
"psr-4": { "Ekreative\\UuidExtraBundle\\": "tests/Ekreative/UuidExtraBundle/" }
}
}