forked from stakx-io/stakx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "stakx/stakx",
"description": "Yet another static website generator powered by Symfony and Twig",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Vladimir Jimenez",
"homepage": "https://allejo.io",
"role": "Project Maintainer"
}
],
"autoload": {
"psr-4": {
"allejo\\stakx\\": "src/allejo/stakx/"
}
},
"autoload-dev": {
"psr-4": {
"allejo\\stakx\\Test\\": "tests/allejo/stakx/Test"
}
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"erusev/parsedown": "^1.6.1",
"erusev/parsedown-extra": "^0.7.1",
"gregwar/rst": "^1.0",
"maciejczyzewski/bottomline": "dev-master",
"mikey179/vfsstream": "^1.6",
"psr/log": "^1.0.2",
"react/http": "^0.8.3",
"scrivo/highlight.php": "^9.12",
"scssphp/scssphp": "^1.0",
"symfony/config": "^3.4.0",
"symfony/console": "^3.4.0",
"symfony/debug": "^3.4.0",
"symfony/dependency-injection": "^3.4.0",
"symfony/event-dispatcher": "^3.4.0",
"symfony/filesystem": "^3.4.0",
"symfony/finder": "^3.4.0",
"symfony/routing": "^3.4",
"symfony/yaml": "^3.4.0",
"twig/twig": "^1.26"
},
"require-dev": {
"phpunit/phpunit": "~4.8.35",
"phpunit/phpunit-mock-objects": "~2.3.8"
},
"bin": ["bin/stakx"],
"scripts": {
"build": [
"composer install --no-dev",
"box build",
"php -r \"file_put_contents('stakx.phar.version', sha1_file('stakx.phar'));\""
],
"test": "phpunit"
},
"config": {
"platform": {
"php": "5.6.0"
},
"sort-packages": true
}
}