This repository has been archived by the owner on May 12, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
65 lines (65 loc) · 2.34 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": "symplify/statie",
"description": "Static Site Generator",
"license": "MIT",
"bin": [
"bin/statie"
],
"require": {
"php": "^7.2",
"erusev/parsedown-extra": "^0.7.1",
"erusev/parsedown": "^1.7",
"composer/xdebug-handler": "^1.4",
"latte/latte": "^2.5",
"guzzlehttp/guzzle": "^6.5",
"j7mbo/twitter-api-php": "^1.0.6",
"nette/finder": "^2.5",
"nette/utils": "^3.0",
"tracy/tracy": "^2.7",
"twig/twig": "^3.0",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/finder": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"symplify/package-builder": "^7.3",
"symplify/smart-file-system": "^7.3",
"symplify/set-config-resolver": "^7.3",
"symplify/autowire-array-parameter": "^7.3",
"symplify/auto-bind-parameter": "^7.3",
"jean85/pretty-package-versions": "^1.2",
"ocramius/package-versions": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0"
},
"autoload": {
"psr-4": {
"Symplify\\Statie\\": "src",
"Symplify\\Statie\\Generator\\": "packages/generator/src",
"Symplify\\Statie\\Twig\\": "packages/twig/src",
"Symplify\\Statie\\JoindIn\\": "packages/joind-in/src",
"Symplify\\Statie\\Tweeter\\": "packages/tweeter/src",
"Symplify\\Statie\\GithubContributorsThanker\\": "packages/github-contributors-thanker/src",
"Symplify\\Statie\\HeadlineAnchorLinker\\": "packages/headline-anchor-linker/src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\Statie\\Tests\\": "tests",
"Symplify\\Statie\\Generator\\Tests\\": "packages/generator/tests",
"Symplify\\Statie\\Twig\\Tests\\": "packages/twig/tests",
"Symplify\\Statie\\Tweeter\\Tests\\": "packages/tweeter/tests",
"Symplify\\Statie\\HeadlineAnchorLinker\\Tests\\": "packages/headline-anchor-linker/tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.3-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}