-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
56 lines (56 loc) · 1.39 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
{
"name": "acamposm/ping",
"version": "2.1.3",
"description": "Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway.",
"keywords": [
"icmp",
"laravel",
"php",
"ping"
],
"homepage": "https://github.com/angelcamposm/ping",
"readme": "https://github.com/angelcamposm/ping/blob/master/README.md",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Angel Campos",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^6.23",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Acamposm\\Ping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Acamposm\\Ping\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --colors=always --testdox",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Acamposm\\Ping\\ServiceProviders\\PingServiceProvider"
],
"aliases": {
"Ping": "Acamposm\\Ping\\Facades\\PingFacade"
}
}
}
}