-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.46 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
{
"name": "jadu/meteor",
"type": "library",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jadu/doctrine-types.git"
}
],
"require": {
"humbug/box": "^3.16",
"php": ">=7.4",
"guzzlehttp/guzzle": "~6.0",
"symfony/config": "^5.4",
"symfony/console": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/finder": "^5.4",
"symfony/process": "^5.4",
"symfony/options-resolver": "^5.4",
"symfony/yaml": "^5.4",
"doctrine/dbal": "^2.9",
"doctrine/migrations": "^2.3.5",
"jadu/doctrine-types": "^2.0",
"composer/semver": "^3.2",
"composer/package-versions-deprecated": "1.11.99.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5",
"mikey179/vfsstream": "*",
"friendsofphp/php-cs-fixer": "^2.0",
"jadu/php-style": "~1.2"
},
"autoload": {
"psr-4": {
"Meteor\\": "src/",
"Jadu\\Meteor\\": "src/BackwardsCompatibility"
}
},
"autoload-dev": {
"psr-4": {
"Meteor\\": "tests/"
}
},
"config": {
"stability": "stable",
"platform": {
"php": "7.4"
},
"allow-plugins": {
"ocramius/package-versions": true
}
},
"bin": ["bin/meteor"]
}