-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.39 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
{
"name": "ramsey/twig-codeblock",
"description": "A Twig extension for defining blocks of code for syntax highlighting (with Pygments) and more.",
"type": "library",
"keywords": [
"extension",
"highlighting",
"pygmentize",
"pygments",
"syntax",
"twig"
],
"license": "MIT",
"authors": [
{
"name": "Ben Ramsey",
"email": "ben@benramsey.com",
"homepage": "http://benramsey.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ramsey/pygments": "^1.0",
"twig/twig": "^1.15 || ^2.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"Ramsey\\Twig\\CodeBlock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ramsey\\Twig\\CodeBlock\\Test\\": "tests/"
}
},
"scripts": {
"coverage": "phpunit --verbose --colors=always --coverage-html=build/coverage",
"lint": "parallel-lint src tests",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@lint",
"@phpunit",
"@phpcs"
]
}
}