-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 962 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
{
"name": "paysera/lib-plugin-data-validation",
"description": "Library for iterable input validation",
"license": "GPL-3.0",
"type": "library",
"version": "0.2.0",
"require": {
"php": ">=7.4",
"madesimple/php-arrays": "^2.0"
},
"autoload": {
"psr-4": {
"Paysera\\DataValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\DataValidator\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"optimize-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"phpunit": "./vendor/phpunit/phpunit/phpunit tests"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3"
}
}