-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.73 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
{
"name": "aztecweb/gestao-de-pdfs",
"type": "project",
"license": "MIT",
"description": "Projeto destinado para testes de pessoas desenvolvedoras.",
"homepage": "https://aztecweb.net",
"authors": [
{
"name": "Eduardo Pittol",
"email": "pittol@aztecweb.net"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"require": {
"johnpbloch/wordpress": "6.5.2",
"wpackagist-theme/twentytwentytwo": "1.7"
},
"require-dev": {
"codeception/module-asserts": "3.0.0",
"codeception/module-db": "3.1.3",
"codeception/module-phpbrowser": "3.0.1",
"codeception/module-webdriver": "3.2.2",
"lucatume/wp-browser": "4.0.10",
"phpstan/phpstan": "1.10.67",
"phpstan/phpstan-strict-rules": "1.5.5",
"szepeviktor/phpstan-wordpress": "1.3.4",
"phpcompatibility/phpcompatibility-wp": "2.1.5",
"wp-coding-standards/wpcs": "3.1.0"
},
"config": {
"platform": {
"php": "8.3"
},
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/packages/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/packages/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}