-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.28 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
{
"name": "suomato/base-camp",
"description":
"Awesome WordPress starter theme with own CLI for developers based on modern web technologies.",
"license": "MIT",
"keywords": [
"bulma",
"webpack",
"timber",
"starter-theme",
"wordpress",
"composer"
],
"type": "wordpress-theme",
"minimum-stability": "stable",
"authors": [
{
"name": "Toni Suomalainen",
"email": "toni.suomalainen@gmail.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"extra": {
"installer-paths": {
"../../plugins/{$name}/": ["wpackagist-plugin/*", "type:wordpress-plugin"]
}
},
"require": {
"php": "^7.0",
"symfony/var-dumper": "^4.1",
"symfony/console": "^4.1",
"league/flysystem": "^1.0",
"symfony/finder": "^4.1",
"vlucas/phpdotenv": "^2.4",
"suomato/luna": "^1.3",
"timber/timber": "^1.7",
"automattic/woocommerce": "^2.0"
},
"autoload": {
"files": ["app/helpers.php", "resources/languages/messages.php"],
"classmap": ["app/timber-extends"],
"psr-4": {
"Basecamp\\Models\\": "app/models/"
}
},
"scripts": {
"post-create-project-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}