-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 983 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 983 Bytes
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
{
"name": "hellotext/wordpress-plugin",
"description": "We help eCommerce and retail brands improve their revenues and simplify their marketing.",
"license": "proprietary",
"autoload": {
"psr-4": {
"Hellotext\\": "src/"
}
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.2.12"
}
},
"require-dev": {
"pestphp/pest": "^3.8",
"mockery/mockery": "^1.6",
"php-stubs/wordpress-stubs": "^6.9",
"php-stubs/woocommerce-stubs": "^10.4",
"friendsofphp/php-cs-fixer": "^3.92"
},
"scripts": {
"test": "vendor/bin/pest",
"format": "vendor/bin/php-cs-fixer fix",
"format:check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"build": "composer install --no-dev --optimize-autoloader"
}
}