-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.22 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
{
"name": "vanio/stdlib",
"description": "General purpose classes extending the PHP language.",
"keywords": ["standard library", "enum", "strings", "string utility", "objects", "object utility", "uri value object"],
"homepage": "https://github.com/vaniocz/stdlib",
"license": "MIT",
"authors": [
{"name": "Adam Hojka"},
{"name": "Marek Štípek", "email": "[email protected]"}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {"Vanio\\Stdlib\\": "src/"},
"exclude-from-classmap": ["/tests/"]
},
"autoload-dev": {
"psr-4": {"Vanio\\Stdlib\\Tests\\": "tests/"}
},
"scripts": {
"test": "\"vendor/bin/phpunit\"",
"lint": "\"vendor/bin/phpcs\" --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor .",
"fix": "\"vendor/bin/phpcbf\" --standard=vendor/vanio/coding-standards/ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor ."
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}