make-act-provided-services-invoice
/
composer.json
43 строки · 1.3 Кб
1{
2"autoload": {
3"psr-4": {"Vasw\\MakeActProvidedServicesInvoice\\": "src/"}
4},
5"autoload-dev": {
6"psr-4": {
7"Vasw\\MakeActProvidedServicesInvoice\\UnitTest\\": ["test/unit/"],
8"Vasw\\MakeActProvidedServicesInvoice\\IntegrationTest\\": ["test/integration/"]
9},
10"files": ["test/bootstrap.php"]
11},
12"require": {
13"php": ">=8.2.0",
14"ext-json": "*",
15"ext-mbstring": "*",
16"bitrix24/b24phpsdk": "1.1.*",
17"monolog/monolog": "3.7.*"
18},
19"require-dev": {
20"phpunit/phpunit": "11.4.*"
21},
22"scripts": {
23"phpunit": [
24"@composer dump-autoload --dev",
25"./vendor/bin/phpunit --testdox --bootstrap ./test/bootstrap.php"
26],
27"test-unit": [
28"@composer dump-autoload --dev",
29"./vendor/bin/phpunit --testdox --bootstrap ./test/bootstrap.php test/unit/"
30],
31"test-int": [
32"@composer dump-autoload --dev",
33"./vendor/bin/phpunit --testdox --bootstrap ./test/bootstrap.php test/integration/"
34],
35"test-all": [
36"@composer dump-autoload --dev",
37"./vendor/bin/phpunit --testdox --bootstrap ./test/bootstrap.php test/"
38]
39},
40"config": {
41"process-timeout": 900
42}
43}
44