-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.54 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
{
"name": "encoredigitalgroup/planningcenter-php-sdk",
"description": "PHP SDK for the Planning Center API",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Encore Digital Group",
"email": "opensource@encoredigitalgroup.com",
"role": "Maintainer"
},
{
"name": "Marc Beinder",
"email": "hello@marcbeinder.com",
"role": "Maintaining Developer"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"neronmoon/scriptsdev": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": "^8.3",
"illuminate/support": "^10.0|^11.0",
"phpgenesis/http": "^0.2"
},
"require-dev": {
"orchestra/testbench": "^9.6",
"pestphp/pest": "^3.5",
"pestphp/pest-plugin-laravel": "^3.0",
"phpgenesis/devutilities": "^0.2",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0",
"tightenco/duster": "^3.0",
"tomasvotruba/cognitive-complexity": "^0.2.3"
},
"autoload": {
"psr-4": {
"EncoreDigitalGroup\\PlanningCenter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}