forked from Pawka/phrozn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 973 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
{
"name": "farazdagi/phrozn",
"description": "Static Site Generator for PHP",
"require": {
"twig/twig": "1.12.*",
"symfony/yaml": "2.0.*",
"pear/Console_Color2": "*",
"pear/Console_Table": "*",
"pear/archive_tar": "*",
"pear/console_commandline": "*"
},
"autoload": {
"psr-0": {
"Phrozn": "" ,
"PhroznPlugin": "plugins/"
}
},
"scripts": {
"post-install-cmd": [
"rm -f configs/commands/initialize.yml",
"rm -f configs/commands/build.yml",
"rm -f configs/commands/update.yml",
"ln -s init.yml configs/commands/initialize.yml",
"ln -s up.yml configs/commands/build.yml",
"ln -s up.yml configs/commands/update.yml",
"rm -f bin/phr.php",
"ln -s phrozn.php bin/phr.php",
"chmod +x bin/phrozn.php"
]
},
"minimum-stability": "dev"
}