-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 996 Bytes
/
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
{
"name": "elife/patterns",
"description": "eLife patterns",
"type": "library",
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"eLife\\Patterns\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\eLife\\Patterns\\": "./tests/src"
}
},
"require": {
"php": "^7.1 || ^8.0",
"beberlei/assert": "^2.0",
"mustache/mustache": "^2.5"
},
"require-dev": {
"justinrainbow/json-schema": "^5.1",
"php-jsonpointer/php-jsonpointer": "^1.0",
"phpunit/phpunit": "^5.2",
"phpspec/prophecy": "^1.10",
"symfony/filesystem": "^3.0",
"symfony/finder": "^3.0",
"symfony/process": "^3.0",
"symfony/yaml": "^3.1",
"twig/twig": "^2.10",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"twig/twig": "^2.0, to use PatternExtension"
}
}