forked from shlinkio/shlink-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.84 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
{
"name": "shlinkio/shlink-test-utils",
"type": "project",
"homepage": "https://shlink.io",
"description": "Testing utils for Shlink",
"license": "MIT",
"authors": [
{
"name": "Alejandro Celaya Alastrué",
"homepage": "https://www.alejandrocelaya.com",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"doctrine/data-fixtures": "^1.8",
"doctrine/orm": "^3.3",
"fig/http-message-util": "^1.1",
"guzzlehttp/guzzle": "^7.9",
"phpunit/php-code-coverage": "^11.0",
"phpunit/phpunit": "^11.5",
"psr/container": "^2.0 || ^1.0",
"psr/http-server-middleware": "^1.0",
"shlinkio/shlink-json": "^1.2",
"symfony/console": "^7.2",
"symfony/event-dispatcher": "^7.2",
"symfony/process": "^7.2"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"roave/security-advisories": "dev-master",
"shlinkio/php-coding-standard": "~2.4.0"
},
"autoload": {
"psr-4": {
"Shlinkio\\Shlink\\TestUtils\\": "src"
}
},
"scripts": {
"ci": [
"@cs",
"@stan"
],
"cs": "phpcs",
"cs:fix": "phpcbf",
"stan": "phpstan analyse"
},
"scripts-descriptions": {
"ci": "<fg=blue;options=bold>Alias for \"cs\" and \"stan\"</>",
"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</>"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}