-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 824 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 824 Bytes
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
{
"name": "highliuk/sync",
"description": "A library to facilitate the synchronization of data between multiple sources, inspired by Flysystem Sync",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"sync",
"synchronization"
],
"authors": [
{
"name": "Luca Di Fazio",
"email": "highliuk@gmail.com"
}
],
"autoload": {
"psr-4": {
"HighLiuk\\Sync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HighLiuk\\Sync\\Tests\\": "tests/"
}
},
"require-dev": {
"laravel/pint": "^1.13",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"lint": "pint",
"test": "phpunit --testdox"
}
}