-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
58 lines (58 loc) · 1.66 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
{
"name": "omines/akismet",
"type": "library",
"description": "Open source library for using the Wordpress Akismet anti spam service",
"keywords": ["akismet","spam", "spamfilter", "antispam", "api"],
"license": "MIT",
"authors": [
{
"name": "Niels Keurentjes",
"email": "[email protected]",
"homepage": "https://omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/akismet/issues"
},
"require": {
"php": ">=8.1",
"psr/log": "^3.0",
"symfony/http-client-contracts": "^3"
},
"require-dev": {
"ext-json": "*",
"ekino/phpstan-banned-code": "^2.1",
"friendsofphp/php-cs-fixer": "^3.64.0",
"nyholm/psr7": "^1.8.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^10.5.37",
"psr/http-message": "^1.0 || ^2.0",
"symfony/dotenv": "^6.4|^7.1.5",
"symfony/http-client": "^6.4|^7.1.5",
"symfony/http-foundation": "^6.4|^7.1.5"
},
"suggest": {
"symfony/http-client": "As asynchronous HTTP Client"
},
"autoload": {
"psr-4": { "Omines\\Akismet\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/"}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}