-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wingu/fluffy-po-robot",
"description": "Command line tool for POEditor.com",
"license": "MIT",
"type": "project",
"keywords": [
"poeditor",
"poeditor.com",
"translation",
"android strings",
"ios strings"
],
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.9.2",
"symfony/console": "^7.1.8",
"symfony/filesystem": "^7.1.6",
"symfony/finder": "^7.1.6",
"symfony/runtime": "^7.1.7",
"symfony/translation": "^7.1.6",
"symfony/yaml": "^7.1.6",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"mikey179/vfsstream": "^1.6.12",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.4.3",
"symfony/var-dumper": "^7.1.8"
},
"autoload": {
"psr-4": {
"Wingu\\FluffyPoRobot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Wingu\\FluffyPoRobot\\Tests\\": "tests"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse",
"test": "phpunit --colors=always",
"check": [
"@cs-check",
"@phpstan",
"@test"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
},
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "8.3.14"
},
"sort-packages": true
}
}