-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "codin/dot",
"description": "Dot Notation Array Access",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"friends-of-phpspec/phpspec-code-coverage": "@stable",
"phpspec/phpspec": "@stable",
"phpstan/phpstan": "@stable"
},
"autoload": {
"psr-4": {
"Codin\\Dot\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix . --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline"
],
"test": [
"phpstan analyse --no-progress --no-ansi --configuration=phpstan.neon",
"phpspec run --no-coverage --no-ansi --no-interaction --format=dot"
],
"uninstall": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}