-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1 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
{
"name": "codin/stash",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"provide": {
"psr/cache-implementation": "1.0",
"psr/simple-cache-implementation": "1.0"
},
"require": {
"php": ">=7.4",
"psr/cache": "^1"
},
"require-dev": {
"friends-of-phpspec/phpspec-code-coverage": "^6",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1",
"phpspec/phpspec": "^7"
},
"autoload": {
"psr-4": {
"Codin\\Stash\\": "src/"
}
},
"config": {
"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"
]
}
}