-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.38 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "dotcms/php-sdk",
"description": "The `dotcms-php-sdk` is a PHP library designed to simplify interaction with the dotCMS Page API",
"type": "library",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/promises": "^2.2",
"monolog/monolog": "^3.8",
"respect/validation": "^2.4",
"symfony/property-access": "^7.2",
"symfony/serializer": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.49",
"symfony/var-dumper": "^7.0",
"mockery/mockery": "^1.6"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Dotcms\\PhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dotcms\\PhpSdk\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Freddy Montes"
}
],
"scripts": {
"test": "phpunit tests",
"cs-check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"phpstan": "phpstan analyse src tests --level=max",
"check": [
"@cs-check",
"@phpstan",
"@test"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "alpha"
}