forked from valeriomonti/auto-alt-text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.28 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "valeriomonti/auto-alt-text",
"description": "WordPress plugin that automatically generates alt text for images using AI services (OpenAI, Anthropic Claude, Azure Computer Vision)",
"license": "MIT",
"autoload": {
"psr-4": {
"AATXT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AATXT\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Valerio Monti",
"email": "valerio.monti@vmweb.it"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"require": {
"php-di/php-di": "^7.1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6.33",
"phpstan/phpstan": "*",
"szepeviktor/phpstan-wordpress": "*",
"phpstan/extension-installer": "*"
},
"scripts": {
"test": "@php -d error_reporting=E_ALL^E_DEPRECATED vendor/bin/phpunit",
"test:coverage": "@php -d error_reporting=E_ALL^E_DEPRECATED vendor/bin/phpunit --coverage-html coverage",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G",
"phpstan:baseline": "vendor/bin/phpstan analyse --memory-limit=1G --generate-baseline"
}
}