-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (33 loc) · 978 Bytes
/
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
{
"name": "webfactory/content-mapping",
"description": "Mini framework for mapping content from a source to a destination system, e.g. from Propel objects to Solr or from Doctrine entities to ElasticSearch.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "info@webfactory.de",
"homepage": "https://www.webfactory.de",
"role": "Developer"
}
],
"require": {
"php": "^7.2|8.0.*|8.1.*|8.2.*|8.3.*",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5|^10.5",
"symfony/error-handler": "^5.4|^6.4|^7.1",
"symfony/phpunit-bridge": ">= 6.0"
},
"autoload": {
"psr-4": {
"Webfactory\\ContentMapping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webfactory\\ContentMapping\\Test\\": "tests"
}
}
}