-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 806 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 806 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
37
38
39
40
41
{
"name": "developmint/npm-stats-api",
"description": "Fetch stats for your NPM packages",
"keywords": [
"developmint",
"npm",
"stats",
"api"
],
"type": "library",
"homepage": "https://github.com/developmint/npm-stats-api",
"license": "MIT",
"authors": [
{
"name": "Alexander Lichter",
"email": "alichter@developmint.de",
"homepage": "https://developmint.de",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0.0"
},
"autoload": {
"psr-4": {
"Developmint\\NpmStats\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Developmint\\NpmStats\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}