-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.27 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
{
"prefer-stable": true,
"name": "erebot/styling",
"type": "php-parsers",
"description": "Templating API for IRC messages",
"keywords": ["templating", "templates", "irc", "styles"],
"homepage": "https://github.com/Erebot/Styling",
"license": "GPL-3.0+",
"authors": [
{
"name": "François Poirotte",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/Erebot/Styling/issues",
"irc": "irc://irc.iiens.net/Erebot",
"source": "https://github.com/Erebot/Styling"
},
"require": {
"php": ">=7.0",
"fpoirotte/php_parsergenerator_installer": "^0.1.0",
"erebot/intl": "^0.2.0",
"erebot/dom": "*",
"ext-spl": "*",
"ext-reflection": "*",
"ext-intl": "*",
"ext-pcre": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"erebot/plop": "^0.6",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Erebot\\": "src/"
}
},
"extra": {
"php-parsers": {
"src/Styling/Parser.php": "data/Styling.y"
},
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}