-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.01 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
{
"name": "centreon/centreon-test-lib",
"description": "Library using for Behat test and PHPUnit test",
"version": "1.0.0",
"type": "library",
"keywords": [
"testing",
"centreon",
"phpunit",
"behat"
],
"license": "Apache-2.0",
"require": {
"behat/behat": "^3.0",
"ext-curl": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.3",
"justinrainbow/json-schema": "^5.2",
"league/openapi-psr7-validator": "^0.17",
"nyholm/psr7": "^1.3",
"psr/http-client": "^1.0",
"symfony/http-client": "^6.4.0",
"symfony/property-access": "^6.4.0",
"webmozart/assert": "^1.9",
"phpstan/phpstan": "1.12.*",
"friendsofphp/php-cs-fixer": "3.64.*",
"symfony/console": "^6.4",
"pestphp/pest": "^1.9"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "9.3.*",
"rector/rector": "1.2.*"
},
"suggest": {
"behat/mink": "Browser controller/emulator abstraction for PHP",
"behat/mink-selenium2-driver": "Mink driver using Selenium",
"phpstan/phpstan": "PHP static analysis"
},
"autoload": {
"psr-4": {
"Centreon\\Test\\Behat\\": "src/behat",
"Centreon\\Test\\Mock\\": "src/mock",
"Centreon\\Test\\Traits\\": "src/traits",
"Centreon\\PHPStan\\": "src/PHPStan",
"Centreon\\PhpCsFixer\\": "src/PhpCsFixer",
"Centreon\\Command\\": "src/Command"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPStan\\": "tests/PHPStan"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"symfony/flex": true,
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"php:check8.2": "phpcs -p --standard=PHPCompatibility --extensions=php --runtime-set testVersion 8.2 . --ignore=*/vendor/* --error-severity=1 --warning-severity=8",
"rector:check": "rector --dry-run --debug",
"rector:exec": "rector --debug"
}
}