-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.51 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
58
59
60
61
62
63
{
"name": "madpilot78/laravel-freebox-php",
"description": "Laravel FreeBoxPHP package",
"license": "BSD-3-Clause",
"type": "library",
"version": "1.0.5",
"keywords": [
"api",
"freebox",
"laravel",
"php"
],
"authors": [
{
"name": "Guido Falsi",
"email": "mad@madpilot.net",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^11.0",
"madpilot78/freebox-php": "^1.0.4",
"psr/log": "^3.0",
"symfony/cache": "^7.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.54",
"illuminate/testing": "^11.0",
"madpilot78/php-cs-fixer-config": "^1.0",
"orchestra/testbench": "^9.2",
"phpunit/phpunit": "^11"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"madpilot78\\LaravelFreeBoxPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"providers": [
"madpilot78\\LaravelFreeBoxPHP\\FreeBoxPHPServiceProvider"
]
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}
}