-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name": "nadylib/imex",
"description": "A library that abstracts away common file formats for easier importing and exporting",
"type": "library",
"authors": [
{
"name": "Nadyita",
"email": "[email protected]",
"homepage": "https://nadybot.org",
"role": "Developer"
}
],
"require": {
"php": ">=8.0.0",
"yosymfony/toml": "^1.0",
"nikic/php-parser": "^4.18",
"brick/varexporter": "^0.4.0"
},
"autoload": {
"psr-4": {
"Nadylib\\IMEX\\": "src",
"Nadylib\\IMEX\\Tests\\": "tests"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"squizlabs/php_codesniffer": "^3.8",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"nadybot/nadystyle": "^1.0"
},
"license": ["AGPL-3.0-or-later"],
"scripts": {
"tests": [
"phpunit -c phpunit.xml --testdox --no-interaction --colors=never",
"phpstan analyse --memory-limit 512M --no-ansi -cphpstan.neon --error-format=github --no-progress",
"phpcs --no-colors src"
]
}
}