forked from Spoje-NET/FlexiPeeHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1 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
{
"name": "spoje.net/flexipeehp",
"description": "PHP Based Library for easy interaction with czech accounting system Flexibee.",
"license": "GPL-2.0",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.6",
"ext-curl": "*",
"vitexsoftware/ease-framework": "dev-master"
},
"autoload": {
"psr-4": {
"FlexiPeeHP\\": "src/FlexiPeeHP/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": "vendor/vitexsoftware/ease-framework/tests/src/Ease",
"Test\\FlexiPeeHP\\": "testing/src/FlexiPeeHP/",
"Test\\": "testing/"
}
},
"require-dev": {
"phpunit/php-token-stream": "~1.2",
"phpunit/phpunit": "5.3.*",
"phpunit/phpunit-skeleton-generator": "*",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2"
}
}