-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.43 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "netglue/prismic-cli",
"description": "CLI tooling for developing Prismic content models",
"type": "library",
"license": "MIT",
"keywords": ["prismic", "prismicio", "cli", "console", "laminas"],
"homepage": "https://github.com/netglue/prismic-cli",
"authors": [
{
"name": "George Steel",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
},
"platform": {
"php": "8.2.99"
}
},
"autoload": {
"psr-4": {
"Primo\\Cli\\" : "src"
}
},
"autoload-dev": {
"psr-4": {
"PrimoTest\\Cli\\Unit\\" : "test/Unit",
"PrimoTest\\Cli\\Integration\\" : "test/Integration"
}
},
"require": {
"php": "~8.2 || ~8.3 || ~8.4",
"ext-json": "*",
"netglue/prismic-client": "^1.10.0",
"netglue/prismic-doctype-client": "^1.5.0",
"php-http/discovery": "^1.20",
"psr/container": "^1.0||^2.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"sebastian/diff": "^5.0 || ^6.0",
"symfony/console": "^v6.4.13 || ^7.0.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ext-curl": "*",
"doctrine/coding-standard": "^12.0",
"laminas/laminas-config-aggregator": "^1.15",
"laminas/laminas-diactoros": "^3.5.0",
"laminas/laminas-servicemanager": "^4.0.0",
"php-http/curl-client": "^2.3.2",
"phpunit/phpunit": "^10.5.38",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.26.1"
},
"extra": {
"laminas": {
"config-provider": [
"Primo\\Cli\\ConfigProvider",
"Primo\\Cli\\ApiToolsConfigProvider",
"Primo\\Cli\\CustomTypeApiConfigProvider"
]
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test"
],
"static-analysis": "psalm --shepherd --stats",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}