-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
113 lines (113 loc) · 3.83 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
{
"name": "elife/journal",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"eLife\\Journal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\eLife\\Journal\\": "test/"
}
},
"require": {
"php": "^7.1",
"ext-hash": "*",
"beberlei/assert": "^2.8",
"bobthecow/mustache-bundle": "^1.2",
"cocur/slugify": "^3.0",
"composer/package-versions-deprecated": "1.11.99.2",
"csa/guzzle-bundle": "^2.2",
"cweagans/composer-patches": "^1.6",
"elife/api-client": "^1.0@dev",
"elife/api-sdk": "dev-master",
"elife/civi-contacts": "dev-master",
"elife/patterns": "dev-master",
"fabpot/goutte": "^3.2",
"fig/link-util": "^1.0",
"firebase/php-jwt": "^5.0",
"google/apiclient": "^2.12",
"guzzlehttp/guzzle": "^6.5",
"guzzlehttp/promises": "^1.3",
"guzzlehttp/psr7": "^1.4",
"isometriks/spam-bundle": "^1.0",
"kevinrob/guzzle-cache-middleware": "^3.2",
"knpuniversity/oauth2-client-bundle": "^1.20",
"league/oauth2-client": "^2.2",
"mindplay/composer-locator": "^2.1",
"mustache/mustache": "^2.12",
"nelmio/security-bundle": "^2.4",
"pagerfanta/pagerfanta": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
"snc/redis-bundle": "^2.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/monolog-bundle": "^3.1",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/symfony": "^3.4",
"twig/twig": "^2.7",
"white-october/pagerfanta-bundle": "^1.1"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/mink-selenium2-driver": "^1.3",
"behat/symfony2-extension": "^2.1",
"elife/api": "^2.31",
"elife/api-validator": "^1.0@dev",
"jarnaiz/behat-junit-formatter": "^1.3",
"justinrainbow/json-schema": "^5.2",
"liuggio/fastest": "^1.6",
"ml/json-ld": "^1.1",
"namshi/cuzzle": "^2.0",
"phpspec/prophecy": "^1.7",
"phpunit/phpunit": "^7.1",
"rawr/cross-data-providers": "^2.3",
"squizlabs/php_codesniffer": "^3.5",
"symfony/phpunit-bridge": "^4.0"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-apcu": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-icu": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*"
},
"config": {
"platform": {
"php": "7.1.33"
},
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"mindplay/composer-locator": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"google/apiclient-services": [
"Sheets"
],
"patches": {
"bobthecow/mustache-bundle": {
"Remove superfluous argument": "https://github.com/bobthecow/BobthecowMustacheBundle/pull/9.patch"
},
"cocur/slugify": {
"strip_tags": "https://github.com/cocur/slugify/pull/201.patch"
},
"isometriks/spam-bundle": {
"Add field label": "https://github.com/isometriks/IsometriksSpamBundle/pull/9.patch",
"Use EmailType": "https://github.com/isometriks/IsometriksSpamBundle/pull/17.patch"
},
"monolog/monolog": {
"Fix WhatFailureGroupHandler::handleBatch when the handler has processors": "https://github.com/Seldaek/monolog/pull/1022.patch"
}
}
}
}