-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
64 lines (64 loc) · 1.67 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
{
"name": "icanhazstring/duck-pony",
"type": "library",
"description": "Secret Duck Pony",
"license": "MIT",
"authors": [
{
"name": "icanhazstring",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"icanhazstring/systemctl-php": "^0.8",
"lesstif/php-jira-rest-client": "^5.0",
"symfony/console": "^5.0",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"monolog/monolog": "^2.0",
"league/container": "^4.0",
"laminas/laminas-config": "^3.8",
"icanhazstring/tempa-php": "2.2.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-openssl": "*",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy": "1.x-dev",
"phpspec/prophecy-phpunit": "2.0.x-dev"
},
"scripts": {
"check": [
"phpunit",
"phpcs --standard=PSR12 src/ test/",
"phpstan analyse --no-progress"
]
},
"autoload": {
"psr-4": {
"duckpony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"duckpony\\Test\\": "test"
}
},
"suggest": {
"ext-pdo": "Required for CleanMySQLDatabaseCommand",
"ext-openssl": "Required for slack logging (see config/autoload/logger.config.php.dist)"
},
"bin": [
"bin/dp"
],
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
},
"minimum-stability": "dev"
}