-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "madpilot78/freebox-php",
"description": "PHP library to access the FreeBox APIs",
"license": "BSD-3-Clause",
"type": "library",
"version": "1.0.4",
"keywords": [
"api",
"freebox",
"php"
],
"authors": [
{
"name": "Guido Falsi",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.0",
"league/container": "^4.2",
"psr/container": "^2.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^3.0",
"chillerlan/php-cache": "^5.1",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.54",
"madpilot78/php-cs-fixer-config": "^1.0",
"phpunit/phpunit": "^11",
"symfony/var-dumper": "^7.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"madpilot78\\FreeBoxPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}
}