-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 886 Bytes
/
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
{
"name": "nkkollaw/zubr",
"description": "Wrapper library to fix inconsistencies in PHP's core functions",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niccolò Brogi",
"email": "me@nbrogi.com"
},
{
"name": "Radosław Mejer",
"email": "radmen@radmen.info"
},
{
"name": "Damian Dziaduch",
"email": "damian@dziaduch.pl"
}
],
"autoload": {
"files": [
"./dist/zubr.php"
]
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"squizlabs/php_codesniffer": "^3.0"
},
"scripts": {
"phpunit": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs --standard=PSR2 src",
"build": "php ./build.php"
}
}