-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
38 lines (38 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
35
36
37
38
{
"name": "mnastalski/baselinker-php",
"description": "BaseLinker PHP library",
"keywords": [
"baselinker"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/mnastalski/baselinker-php",
"authors": [
{
"name": "Mateusz Nastalski",
"homepage": "https://nastalski.pl"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Baselinker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Baselinker\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}