-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"version": "v0.2.1",
"name": "php-filter/string",
"description": "Take advantage of the ability to filter thongs with a filter chain.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milosz Karolczyk",
"email": "milosz.karolczyk@gmail.com"
}
],
"require": {
"php": ">=7.3",
"ext-iconv": "*"
},
"require-dev": {
"captainhook/captainhook": "^5.4",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.54",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^4.1"
},
"autoload": {
"psr-4": {
"Smart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Smart\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"post-autoload-dump": "vendor/bin/captainhook install -f -s",
"fix-cs": [
"php-cs-fixer fix"
],
"static:analyze": [
"vendor/bin/psalm --output-format=compact",
"vendor/bin/phpstan analyze -c phpstan.neon",
"php-cs-fixer fix --dry-run --diff"
],
"tests": [
"vendor/bin/phpunit --colors=always"
]
}
}