This repository was archived by the owner on Oct 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.75 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "webeweb/syntaxhighlighter-bundle",
"type": "symfony-bundle",
"description": "Integrate SyntaxHighlighter with Symfony 2 and more",
"keywords": [
"bundle",
"symfony",
"syntaxhighlighter",
"webeweb"
],
"homepage": "https://github.com/webeweb/syntaxhighlighter-bundle",
"license": "MIT",
"authors": [
{
"name": "webeweb",
"homepage": "https://github.com/webeweb/"
}
],
"require": {
"php": "^5.6|^7.0",
"symfony/asset": "^2.7|^3.0|^4.0",
"symfony/framework-bundle": "^2.7|^3.0|^4.0",
"symfony/translation": "^2.7|^3.0|^4.0",
"twig/twig": "^1.0||^2.0",
"webeweb/core-bundle": "^2.13",
"webeweb/core-library": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^7.0",
"doctrine/orm": "^2.2",
"doctrine/doctrine-bundle": "^1.0",
"symfony/form": "^2.7|^3.0|^4.0",
"symfony/browser-kit": "^2.7|^3.0|^4.0",
"symfony/monolog-bundle": "^2.7|^3.0|^4.0",
"symfony/security-bundle": "^2.7|^3.0|^4.0",
"symfony/templating": "^2.7|^3.0|^4.0",
"symfony/twig-bundle": "^2.7|^3.0|^4.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"WBW\\Bundle\\SyntaxHighlighterBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"WBW\\Bundle\\SyntaxHighlighterBundle\\Tests\\": "Tests/"
}
},
"support": {
"issues": "https://github.com/webeweb/syntaxhighlighter-bundle/issues"
}
}