-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
63 lines (63 loc) · 1.88 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
{
"name": "doctrine/rst-parser",
"description": "PHP library to parse reStructuredText documents and generate HTML or LaTeX documents.",
"license": "MIT",
"keywords": [
"rst",
"markup",
"parser",
"restructuredtext",
"html",
"latex"
],
"authors": [
{
"name": "Grégoire Passault",
"email": "g.passault@gmail.com",
"homepage": "http://www.gregwar.com/"
},
{
"name": "Jonathan H. Wage",
"email": "jonwage@gmail.com",
"homepage": "https://jwage.com"
}
],
"homepage": "https://github.com/doctrine/rst-parser",
"require": {
"php": "^7.2 || ^8.0",
"doctrine/event-manager": "^1.0 || ^2.0",
"symfony/filesystem": "^4.1 || ^5.0 || ^6.0 || ^7.0",
"symfony/finder": "^4.1 || ^5.0 || ^6.0 || ^7.0",
"symfony/polyfill-mbstring": "^1.0",
"symfony/string": "^5.3 || ^6.0 || ^7.0",
"symfony/translation-contracts": "^1.1 || ^2.0 || ^3.0",
"twig/twig": "^2.9 || ^3.3"
},
"require-dev": {
"doctrine/coding-standard": "^11.0",
"gajus/dindent": "^2.0.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
"symfony/css-selector": "4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/dom-crawler": "4.4 || ^5.2 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Doctrine\\RST\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Doctrine\\Tests\\RST\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}