-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 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
{
"name": "sandwave-io/phone-pin-checker",
"description": "Check VIP phone caller code with repository",
"license": "MIT",
"authors": [
{
"name": "Stephan van der Horn",
"email": "stephan@sandwave.io"
},
{
"name": "Jesse Kramer",
"email": "jesse@kramerventures.nl"
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10.3.3",
"nesbot/carbon": "^2.66.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0.15",
"mockery/mockery": "^1.5.1",
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan": "^1.10.6",
"sandwave-io/php-cs-fixer-config": "^1.0.0"
},
"autoload": {
"psr-4": {
"Sandwave\\PhonePinChecker\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@lint",
"@test:unit"
],
"test:unit": [
"vendor/bin/phpunit --coverage-text"
],
"test:types": [
"vendor/bin/phpstan analyze"
],
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}