-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 972 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
40
41
{
"name": "taniko/saori",
"description": "static site generator",
"license": "MIT",
"autoload": {
"psr-4": {
"Taniko\\Saori\\":"src"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Test\\":"tests"
}
},
"require": {
"php": "^7.1.3",
"ext-mbstring": "*",
"twig/twig": "^1.24",
"cebe/markdown": "^1.1",
"mibe/feedwriter": "^1.0",
"symfony/console": "^3.1",
"illuminate/validation": "^5.3",
"illuminate/support": "^5.3",
"symfony/yaml": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"fzaninotto/faker": "^1.6",
"squizlabs/php_codesniffer": "^3.4",
"mikey179/vfsStream": "^1.6"
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpcs -n src tests"
]
}
}