-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1021 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "attitude/file-system-storage",
"description": "Tiny but powerful file system storage",
"license": "MIT",
"scripts": {
"test": "pest",
"test:watch": "pest --watch",
"test:profile": "pest --profile",
"test:coverage": "XDEBUG_MODE=coverage pest --coverage",
"test:coverage:html": "XDEBUG_MODE=coverage pest --coverage-html coverage"
},
"autoload": {
"psr-4": {
"Attitude\\FileSystemStorage\\": "src/"
}
},
"authors": [
{
"name": "Martin Adamko",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/attitude/cli-logger-php"
},
{
"type": "vcs",
"url": "https://github.com/attitude/types-php"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3.0"
},
"require-dev": {
"attitude/cli-logger": "dev-main",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-watch": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.8"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}