-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.95 KB
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
68
69
70
71
72
{
"name": "parisek/timber-kit",
"description": "WordPress/Timber starter kit — StarterBase, Helpers, Resizer",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Petr Parimucha",
"email": "petr.parimucha@portadesign.cz"
}
],
"require": {
"php": "^8.3",
"ext-gd": "*",
"parisek/twig-attribute": "^1.0",
"parisek/twig-common": "^1.0",
"parisek/twig-typography": "^1.3",
"spatie/image": "^3.8",
"symfony/twig-bridge": "^5.4 || ^6.2 || ^7.0",
"symfony/var-dumper": "^5.4 || ^6.2 || ^7.0",
"timber/timber": "^2.0",
"twig/string-extra": "^3.0"
},
"require-dev": {
"brain/monkey": "^2.7",
"ergebnis/composer-normalize": "^2.52",
"giorgiosironi/eris": "^1.1",
"php-stubs/acf-pro-stubs": "^6.5",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"suggest": {
"ext-imagick": "Required for smart-crop feature in Resizer"
},
"autoload": {
"psr-4": {
"Parisek\\TimberKit\\": "src/"
},
"files": [
"compat/aliases.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.3.0"
}
},
"scripts": {
"adr": "python3 scripts/check-adr-index.py",
"check": [
"@test:all",
"@phpstan",
"@adr"
],
"phpstan": "php -d memory_limit=2G vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit --testsuite=Unit",
"test:all": [
"@test",
"@test:property"
],
"test:property": "vendor/bin/phpunit -c phpunit.property.xml"
}
}