-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.26 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
{
"name": "alcea/cnp",
"description": "PHP Validation for Personal Identification Number (Validare PHP pentru Cod Numeric Personal CNP)",
"version": "3.0.0",
"keywords": [
"CNP",
"PHP",
"Validare",
"Validator"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niku Alcea",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/alceanicu/cnp",
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^1.2",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "^3.2"
},
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --testdox",
"phpmd": "./vendor/bin/phpmd ./src ansi phpmd.xml --exclude vendor/",
"phpstan": "./vendor/bin/phpstan analyse src tests --level max",
"phpcs": "./vendor/bin/phpcs src",
"phpcbf": "./vendor/bin/phpcbf src",
"php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix src"
},
"autoload": {
"psr-4": {
"alcea\\cnp\\": "src/"
}
}
}