-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
43 lines (43 loc) · 843 Bytes
/
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
{
"name": "m3m0r7/nfc-for-php",
"description": "NFC Reader written in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "memory"
}
],
"bin": [
"bin/nfc"
],
"require": {
"php": ">=7.4|>=8",
"ext-ffi": "*",
"illuminate/collections": "^8.63",
"monolog/monolog": "^2.3",
"symfony/console": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"friendsofphp/php-cs-fixer": "^3.2"
},
"autoload": {
"psr-4": {
"NFC\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --stop-on-failure --debug --stderr tests/Units",
"fix": [
"php-cs-fixer fix src --rules=@PSR12",
"php-cs-fixer fix tests --rules=@PSR12"
]
}
}