-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
38 lines (38 loc) · 1.12 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
{
"name": "federatedbookkeeping/prejournal",
"description": "Tool for Automated Bookkeeping",
"type": "project",
"autoload": {
"psr-4": {
"Federatedbookkeeping\\Prejournal\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ponder Source Team",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3||^8.0",
"doctrine/orm": "^2.11.0",
"doctrine/dbal": "^3.2",
"doctrine/annotations": "^1.13.2",
"symfony/yaml": "^5.4",
"symfony/cache": "^5.4",
"pondersource/billing-api": "^2.0",
"vlucas/phpdotenv": "^5.4",
"friendsofphp/php-cs-fixer": "^3.8",
"quickbooks/v3-php-sdk": "^6.0",
"guzzlehttp/guzzle": "^7.5",
"league/csv": "^9.8"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix .",
"test": "PREJOURNAL_ADMIN_PARTY=true DB_DATABASE=testing DB_USER=michiel DB_PASSWORD= DB_HOST=localhost DB_DRIVER=pdo_pgsql ./vendor/bin/phpunit tests"
}
}