forked from centreon/centreon-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
129 lines (129 loc) · 4.7 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "centreon/centreon",
"type": "project",
"license": "GPL-2.0-only",
"description": "Centreon - IT and Application monitoring software",
"config": {
"secure-http": false,
"platform": {
"php": "8.0"
}
},
"require-dev": {
"adlawson/vfs": "^0.12.1",
"behat/behat": "^3.10",
"behat/mink-selenium2-driver": "^1.5",
"friends-of-behat/mink": "^1.9",
"friends-of-behat/mink-extension": "^2.5",
"centreon/centreon-test-lib": "dev-master",
"phpstan/phpstan": "^1.3.0",
"phpstan/phpstan-beberlei-assert": "^1.0.0",
"squizlabs/php_codesniffer": "3.6.2",
"symfony/phpunit-bridge": "6.0.*",
"symfony/stopwatch": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/var-dumper": "5.4.*",
"symfony/web-profiler-bundle": "^5.4",
"twig/twig": "^3.3",
"webmozart/assert": "^1.8",
"zircote/swagger-php": "^4.0",
"pestphp/pest": "^1.21"
},
"require": {
"beberlei/assert": "^3.3",
"curl/curl" : "^2.3",
"dragonmantank/cron-expression": "3.1.0",
"enshrined/svg-sanitize": "^0.14",
"doctrine/annotations": "^1.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-phar": "*",
"friendsofsymfony/rest-bundle": "^3.0",
"jms/serializer-bundle": "^4.0",
"justinrainbow/json-schema": "^5.2",
"nelmio/cors-bundle": "^2.1",
"openpsa/quickform": "3.3.*",
"pear/pear-core-minimal": "^1.10",
"phpdocumentor/reflection-docblock": "^5.2",
"pimple/pimple": "^3.2",
"sensio/framework-extra-bundle": "^6.2",
"smarty/smarty": "^3.1",
"smarty-gettext/smarty-gettext": "^1.6",
"symfony/config": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/expression-language": "5.4.*",
"symfony/filesystem": "5.4.*",
"symfony/finder": "5.4.*",
"symfony/flex": "^1.17",
"symfony/framework-bundle": "5.4.*",
"symfony/http-client": "5.4.*",
"symfony/http-kernel": "5.4.*",
"symfony/maker-bundle": "^1.11",
"symfony/monolog-bundle": "^3.7",
"symfony/options-resolver": "5.4.*",
"symfony/property-access": "5.4.*",
"symfony/property-info": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/validator": "5.4.*",
"symfony/yaml": "5.4.*",
"psr/container": "1.1.1"
},
"autoload": {
"psr-4": {
"": "src/",
"ConfigGenerateRemote\\": "www/class/config-generate-remote/",
"App\\": "src/",
"Tests\\": "tests/php/",
"Centreon\\Test\\Api\\": "tests/api/"
},
"classmap": ["www/class/"],
"files" : [
"GPL_LIB/smarty-plugins/function.eval.php",
"www/api/exceptions.php",
"www/api/class/webService.class.php",
"www/lib/HTML/QuickForm/HTML_QuickFormCustom.php",
"www/lib/HTML/QuickForm/HTML_QuickForm_checkbox_Custom.php",
"www/lib/HTML/QuickForm/HTML_QuickForm_radio_Custom.php",
"www/lib/HTML/QuickForm/select2.php",
"www/lib/HTML/QuickForm/advmultiselect.php",
"www/lib/HTML/QuickForm/tags.php",
"www/lib/HTML/QuickForm/customcheckbox.php",
"www/lib/HTML/QuickForm/selectoptgroup.php",
"www/class/centreon-clapi/centreonACL.class.php"
]
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"test": "pest",
"test:ci": "@test --log-junit ./build/phpunit.xml --coverage-clover ./build/coverage-be.xml --no-interaction --do-not-cache-result",
"codestyle": "phpcs --extensions=php --standard=./ruleset.xml ./",
"codestyle:ci": "@codestyle --report=checkstyle --report-file=./build/checkstyle-be.xml --no-cache",
"phpstan": "phpstan analyse -c phpstan.neon --level 6 --memory-limit=512M",
"phpstan:ci": "@phpstan --error-format=absolute --no-interaction --no-progress"
}
}