-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.6 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.6 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
50
51
52
53
54
55
{
"name": "respect/string-formatter",
"type": "library",
"description": "A powerful and flexible way of formatting and transforming strings",
"require": {
"php": "^8.5",
"respect/stringifier": "^3.0",
"symfony/polyfill-mbstring": "^1.33",
"symfony/translation-contracts": "^3.6"
},
"suggest": {
"symfony/translation": "For translation support in TransModifier (^6.0|^7.0)"
},
"require-dev": {
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.5",
"respect/coding-standard": "^5.0",
"symfony/translation": "^6.0|^7.0"
},
"license": "ISC",
"autoload": {
"psr-4": {
"Respect\\StringFormatter\\": "src/"
},
"files": ["aliases.php"]
},
"autoload-dev": {
"psr-4": {
"Respect\\StringFormatter\\": ["docs/contributing/templates/php/src"],
"Respect\\StringFormatter\\Test\\": ["tests/", "docs/contributing/templates/php/tests"]
}
},
"authors": [
{
"name": "Henrique Moody",
"email": "henriquemoody@gmail.com"
}
],
"scripts": {
"lint": "phpcs",
"test": "phpunit",
"analyze": "phpstan",
"format": "phpcbf"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}