-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.39 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "automattic/telex",
"description": "Install blocks and themes from your Telex projects.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.2",
"nyholm/psr7": "^1.8",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"doctrine/instantiator": "^1.5",
"php-stubs/wordpress-stubs": "^6.9",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpcsstandards/phpcsutils": "^1.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.13.5",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-cli/wp-cli": "^2.11",
"wp-coding-standards/wpcs": "^3.3",
"yoast/phpunit-polyfills": "^4.0"
},
"autoload": {
"psr-4": {
"Telex\\Sdk\\": "lib/telex-sdk/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2.0"
}
},
"scripts": {
"lint": "phpcs",
"test": "phpunit",
"analyse": "phpstan analyse --memory-limit=512M"
}
}