-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
45 lines (45 loc) · 935 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
{
"name": "machinateur/tab-transfer",
"type": "project",
"description": "A tool to transfer tabs from your android phone to your computer using `adb`.",
"keywords": [
"android",
"chrome",
"tab-transfer"
],
"license": "MIT",
"authors": [
{
"name": "machinateur",
"email": "hello@machinateur.dev",
"homepage": "https://machinateur.dev"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"symfony/console": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/filesystem": "^5.4",
"symfony/process": "^5.4"
},
"require-dev": {
"humbug/box": "^3.16"
},
"autoload": {
"psr-4": {
"Machinateur\\ChromeTabTransfer\\": "src/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
}
},
"scripts": {
"tab-transfer": "@php tab-transfer",
"box-compile": "box compile"
}
}