-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "fivefifteen/fetcher",
"version": "0.0.4",
"description": "A package manager written in PHP that supports installing dependencies from GitHub, npm, custom URLs, and local file paths.",
"authors": [
{
"name": "Five Fifteen",
"email": "[email protected]",
"homepage": "https://fivefifteen.com"
},
{
"name": "Kodie Grantham",
"email": "[email protected]",
"homepage": "https://kodieg.com"
}
],
"keywords": [
"cli",
"git",
"hub",
"npm",
"node",
"package",
"pkg",
"manage",
"manager",
"fetch",
"fetched",
"download",
"dependency",
"dependencies",
"frontend",
"front-end",
"front",
"end",
"javascript",
"js",
"css",
"scss",
"sass",
"style",
"stylesheet",
"build",
"compile",
"tool",
"file",
"local",
"url",
"http",
"https"
],
"homepage": "https://github.com/fivefifteen/fetcher",
"license": "MIT",
"bin": [
"bin/fetcher"
],
"autoload": {
"psr-4": {
"Fetcher\\": "src/"
}
},
"require": {
"php": "^8.1",
"adhocore/cli": "^1.9",
"composer/semver": "^3.4",
"splitbrain/php-archive": "^1.2"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "vendor/bin/phpunit tests --display-warnings"
}
}