-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.08 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "nelexa/crossplane",
"description": "Reliable and fast NGINX configuration file parser and builder. This is a PHP port of the Nginx Python crossplane package.",
"keywords": ["nginx", "creossplane", "parser"],
"type": "library",
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/console": "*",
"symfony/polyfill-php73": "^1.23",
"symfony/polyfill-php80": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^7.5 | ^8.5 | ^9.5"
},
"suggest": {
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled"
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Nelexa\\NginxParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nelexa\\NginxParser\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ne-Lexa",
"email": "alexey@nelexa.ru"
}
],
"minimum-stability": "stable",
"bin": [
"bin/crossplane"
]
}