forked from 0x6368656174/atol-online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 837 Bytes
/
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
{
"name": "it-quasar/atol-online",
"version": "4.1.0",
"description": "Библиотека для работы с АТОЛ Онлайн",
"type": "library",
"license": "GPL-3.0-or-later",
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix ./src && ./vendor/bin/php-cs-fixer fix ./tests",
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php --testdox tests"
},
"authors": [
{
"name": "Pavel Puchkov",
"email": "0x6368656174@gmail.com"
}
],
"autoload": {
"psr-4": {
"ItQuasar\\AtolOnline\\": "src"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0",
"ext-curl": "*",
"ext-json": "*",
"psr/log": "^1.0",
"psr/cache": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"phpunit/phpunit": "^7.2"
}
}