-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.14 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "simovative/dockerlastic",
"type": "project",
"license": "proprietary",
"description": "Dockerlastic",
"require": {
"php": "^6.0 | ^8.2",
"elasticsearch/elasticsearch": "^8.8",
"symfony/console": "^6.3",
"guzzlehttp/guzzle": "^7.7"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Simovative\\Dockerlastic\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"process-timeout": 600,
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "8.2.8"
},
"use-include-path": true,
"sort-packages": true,
"github-protocols": [
"https"
],
"allow-plugins": {
"phpstan/phpstan": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"analyze": "phpstan analyse -c phpstan.neon --no-progress",
"cs-check": "phpcs --standard=PSR12 src"
}
}