-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.19 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
{
"name": "nadybot/aolib",
"description": "An amphp3-based client library for the Anarchy Online chat server",
"authors": [
{
"name": "Nadyita",
"email": "[email protected]",
"homepage": "https://nadybot.org",
"role": "Developer"
}
],
"type": "library",
"require": {
"php": ">=8.1.17",
"amphp/byte-stream": "^2.1.0",
"thecodingmachine/safe": "^2.0",
"psr/log": "^1|^2|^3",
"amphp/file": "^3.0",
"nadylib/leaky-bucket": "^0.1.0",
"amphp/pipeline": "^1.1"
},
"autoload": {
"psr-4": {
"AO\\": "src",
"AO\\Tests\\": "tests"
}
},
"require-dev": {
"nadybot/nadystyle": "^1.0.0",
"composer-phar/php-cs-fixer": "^3.51.0",
"squizlabs/php_codesniffer": "^3.8",
"composer-phar/phpstan": "^1.10",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"phpunit/phpunit": "^10.0",
"beste/psr-testlogger": "^1.0"
},
"license": [
"AGPL-3.0-or-later"
],
"scripts": {
"tests": [
"phpunit -c phpunit.xml",
"phpstan analyse --memory-limit 512M --no-progress --no-ansi",
"phpcs --no-colors --report=checkstyle -q src tests",
"(command -v mago && mago lint) || true"
]
}
}