-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.29 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.29 KB
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
{
"name": "typedcms/php-starter-kit",
"description": "A simple starter kit for using TypedCMS with PHP.",
"keywords": [
"TypedCMS",
"PHP",
"Starter Kit",
"SDK",
"API"
],
"homepage": "https://typedcms.com/technologies/php",
"license": "MIT",
"authors": [
{
"name": "George Palmer",
"email": "george@typedcms.com"
}
],
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"kamermans/guzzle-oauth2-subscriber": "^1.0",
"swisnl/json-api-client": "2.6.2",
"illuminate/container": "^10.0|^11.0|^12.0|^13.0",
"illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
"nesbot/carbon": "^2.71|^3.8.6",
"psr-discovery/http-client-implementations": "^1.4"
},
"require-dev": {
"laravel/pint": "^1.21",
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.1",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"TypedCMS\\PHPStarterKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TypedCMS\\PHPStarterKit\\Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}