-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 1.46 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
66
67
{
"name": "tapestry-cloud/tapestry",
"description": "Static site generator with PHPPlates",
"keywords": [
"plates",
"static",
"site",
"generator"
],
"license": "MIT",
"authors": [
{
"name": "Simon Dann",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Tapestry\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tapestry\\Tests\\": "tests"
}
},
"require": {
"php": ">=5.6.0",
"symfony/console": "^3.1",
"symfony/filesystem": "^3.1",
"symfony/finder" : "^3.1",
"symfony/yaml": "^3.1",
"league/container": "^2.2",
"league/plates": "^3.1",
"league/event": "^2.1",
"nesbot/carbon": "^1.21",
"composer/semver": "^1.4",
"michelf/php-markdown": "^1.7",
"symfony/process": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "5.7.*"
},
"bin": [
"bin/tapestry.php"
],
"scripts": {
"box": [
"composer install --no-dev --prefer-dist",
"@php -r \"file_exists('box.phar') || exec('curl -LSs https://box-project.github.io/box2/installer.php | php');\"",
"@php build/BuildVersion.php",
"@php box.phar build -v"
],
"api-docs": [
"@php -r \"file_exists('sami.phar') || exec('curl -O http://get.sensiolabs.org/sami.phar');\"",
"@php sami.phar update sami-config.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.1.0-dev"
}
}
}