-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
37 lines (37 loc) · 1019 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
37
{
"name": "amabnl/php-mqseries",
"type": "library",
"description": "A library to interface with a WebSphere MQ Queue Manager using the PHP mqseries pecl extension",
"keywords": ["php", "wmq", "mqseries", "websphere", "pecl", "extension", "library", "messaging", "ibm", "queue", "manager"],
"minimum-stability": "stable",
"homepage": "https://github.com/amabnl/php-mqseries",
"license": "Apache-2.0",
"authors": [
{
"name": "Dieter Devlieghere",
"email": "dieter.devlieghere@benelux.amadeus.com",
"homepage": "http://dermika.be",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.4.11",
"psr/log": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"suggest": {
"ext-mqseries": "To actually use this library, you'll have to install the PECL extension mqseries"
},
"autoload": {
"psr-4": {
"MqSeries\\": "src/MqSeries"
}
},
"autoload-dev": {
"psr-4": {
"Test\\MqSeries\\": "tests/MqSeries"
}
}
}