-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1016 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "oszuidwest/streekomroep",
"description": "Streekomroep theme to use with Timber",
"type": "wordpress-theme",
"minimum-stability": "stable",
"authors": [
{
"email": "[email protected]",
"name": "Omroepstichting ZuidWest"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"Streekomroep\\": "src/"
}
},
"require": {
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"league/commonmark": "^2.4",
"nesbot/carbon": "^2.66",
"symfony/yaml": "^5.4",
"timber/timber": "~2.2.0",
"twig/markdown-extra": "^3.7"
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.2"
}
}
}