-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
{
"name": "centreon/centreon-test-lib",
"description": "Library using for Behat test",
"version": "1.0.0",
"type": "library",
"keywords": [
"behat"
],
"license": "Apache-2.0",
"require": {
"php": "8.2.*",
"ext-curl": "*",
"ext-pdo": "*",
"behat/behat": "3.23.*",
"guzzlehttp/guzzle": "7.9.*",
"justinrainbow/json-schema": "5.3.*",
"league/openapi-psr7-validator": "0.17.*",
"nyholm/psr7": "1.8.*",
"psr/http-client": "1.0.*",
"symfony/http-client": "7.4.*",
"symfony/property-access": "7.4.*",
"webmozart/assert": "1.11.*"
},
"suggest": {
"behat/mink": "Browser controller/emulator abstraction for PHP",
"behat/mink-selenium2-driver": "Mink driver using Selenium"
},
"autoload": {
"psr-4": {
"Centreon\\Test\\Behat\\": "src/behat",
"Centreon\\Command\\": "src/Command"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"symfony/flex": false
}
}
}