-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.38 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.38 KB
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
{
"name": "gatepay/credit-card",
"description": "A credit card validator and generator for PHP",
"type": "library",
"homepage": "https://github.com/TrayDigita/GatePay-CreditCard",
"license": "MIT",
"prefer-stable": true,
"keywords": [
"credit card",
"validator",
"generator",
"luhn algorithm",
"php"
],
"authors": [
{
"name": "arrayiterator",
"email": "arrayiterator@gmail.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"slevomat/coding-standard": "^8.28.1",
"squizlabs/php_codesniffer": "^4.0.1",
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "./vendor/bin/phpunit --config=phpunit.xml.dist",
"lint": "./vendor/bin/phpcs --standard=phpcs.xml.dist",
"analyse": "./vendor/bin/phpstan --configuration=phpstan.neon"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"GatePay\\CreditCard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GatePay\\CreditCard\\": "src/",
"GatePay\\CreditCardTests\\": "tests/"
}
}
}