forked from kierwils/validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.29 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "rwarasaurus/validation",
"description": "Input validator",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=7",
"ext-mbstring": "*",
"egulias/email-validator": "^2"
},
"require-dev": {
"phpspec/phpspec": "^3",
"phpstan/phpstan": "^0",
"friendsofphp/php-cs-fixer": "^2"
},
"autoload": {
"psr-4": {
"Validation\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix src/ --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline_array",
"./bin/php-cs-fixer fix spec/ --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline_array"
],
"uninstall": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}