-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
81 lines (81 loc) · 2.64 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
{
"name": "shlinkio/shlink-installer",
"type": "library",
"homepage": "https://shlink.io",
"description": "A PHP command line tool used to install shlink",
"license": "MIT",
"authors": [
{
"name": "Alejandro Celaya Alastrué",
"homepage": "https://www.alejandrocelaya.com",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"laminas/laminas-config-aggregator": "^1.17",
"laminas/laminas-servicemanager": "^4.3 || ^3.23",
"laminas/laminas-stdlib": "^3.20",
"shlinkio/shlink-config": "^3.4",
"symfony/console": "^7.2",
"symfony/filesystem": "^7.2",
"symfony/process": "^7.2",
"webimpress/safe-writer": "^2.2"
},
"require-dev": {
"devster/ubench": "^2.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5",
"roave/security-advisories": "dev-master",
"shlinkio/php-coding-standard": "~2.4.0",
"symfony/var-dumper": "^7.2"
},
"autoload": {
"psr-4": {
"Shlinkio\\Shlink\\Installer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ShlinkioTest\\Shlink\\Installer\\": "test"
}
},
"scripts": {
"ci": [
"@cs",
"@stan",
"@test:ci"
],
"cs": "phpcs",
"cs:fix": "phpcbf",
"stan": "phpstan analyse",
"test": "phpunit --order-by=random --testdox --testdox-summary",
"test:ci": [
"@putenv XDEBUG_MODE=coverage",
"@test --coverage-clover=build/clover.xml"
],
"test:pretty": [
"@putenv XDEBUG_MODE=coverage",
"@test --coverage-html=build/coverage-html"
]
},
"scripts-descriptions": {
"ci": "<fg=blue;options=bold>Alias for \"cs\", \"stan\" and \"test:ci\"</>",
"cs": "<fg=blue;options=bold>Checks coding styles</>",
"cs:fix": "<fg=blue;options=bold>Fixes coding styles, when possible</>",
"stan": "<fg=blue;options=bold>Inspects code with phpstan</>",
"test": "<fg=blue;options=bold>Runs unit tests with no coverage reports</>",
"test:ci": "<fg=blue;options=bold>Runs unit tests generating coverage reports and logs</>",
"test:pretty": "<fg=blue;options=bold>Runs unit tests generating coverage reports in html</>"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"bin/shlink-installer"
]
}