-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 4.63 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (105 loc) · 4.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "librecodeoop/akaunting-nfse",
"description": "Akaunting module for NFS-e issuance via SEFIN Nacional (ABRASF 2.04 / SEFIN 1.0)",
"type": "akaunting-module",
"license": "AGPL-3.0-or-later",
"keywords": ["akaunting", "nfse", "nota-fiscal", "brazil", "sefin", "fiscal", "module"],
"authors": [
{
"name": "LibreCode Coop",
"email": "dev@librecodecoop.org.br",
"homepage": "https://librecodecoop.org.br",
"role": "Developer"
}
],
"homepage": "https://github.com/LibreCodeCoop/akaunting-nfse",
"support": {
"issues": "https://github.com/LibreCodeCoop/akaunting-nfse/issues",
"source": "https://github.com/LibreCodeCoop/akaunting-nfse"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"guzzlehttp/guzzle": "^7.9"
},
"autoload": {
"psr-4": {
"Modules\\Nfse\\": "./"
},
"files": [
"3rdparty/scoped/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Modules\\Nfse\\Tests\\": "tests/"
}
},
"scripts": {
"thirdparty:install": "composer --working-dir=3rdparty install --prefer-dist --no-progress --no-interaction",
"runtime-tools:install": "composer --working-dir=vendor-bin/php-scoper install --ansi --prefer-dist --no-progress --no-interaction",
"dev-tools:install": [
"composer --working-dir=vendor-bin/php-scoper install --ansi --prefer-dist --no-progress --no-interaction",
"composer --working-dir=vendor-bin/phpunit install --ansi --prefer-dist --no-progress --no-interaction",
"composer --working-dir=vendor-bin/behat install --ansi --prefer-dist --no-progress --no-interaction",
"composer --working-dir=vendor-bin/php-cs-fixer install --ansi --prefer-dist --no-progress --no-interaction",
"composer --working-dir=vendor-bin/psalm install --ansi --prefer-dist --no-progress --no-interaction"
],
"thirdparty:scope": [
"Composer\\Config::disableProcessTimeout",
"@php -d memory_limit=-1 vendor-bin/php-scoper/vendor/bin/php-scoper add-prefix --force --config=3rdparty/scoper.inc.php"
],
"thirdparty:build:prod": [
"@thirdparty:install",
"@runtime-tools:install",
"@thirdparty:scope"
],
"thirdparty:build": [
"@thirdparty:install",
"@dev-tools:install",
"@thirdparty:scope"
],
"thirdparty:build:auto": [
"if [ \"${COMPOSER_DEV_MODE:-1}\" = \"0\" ]; then composer thirdparty:build:prod; else composer thirdparty:build; fi"
],
"post-install-cmd": [
"@thirdparty:build:auto"
],
"post-update-cmd": [
"@thirdparty:build:auto"
],
"test": "vendor-bin/phpunit/vendor/bin/phpunit",
"test:unit": "vendor-bin/phpunit/vendor/bin/phpunit --testsuite=Unit",
"test:behat": "vendor-bin/behat/vendor/bin/behat --config=behat.yml.dist --strict --colors",
"test:behat:auth": "vendor-bin/behat/vendor/bin/behat --config=behat.yml.dist --strict --colors --tags='@auth'",
"test:behat:guest": "vendor-bin/behat/vendor/bin/behat --config=behat.yml.dist --strict --colors --tags='~@auth'",
"test:coverage": "XDEBUG_MODE=coverage vendor-bin/phpunit/vendor/bin/phpunit --coverage-clover=build/logs/clover.xml",
"cs:check": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"psalm": "vendor-bin/psalm/vendor/bin/psalm --threads=$(nproc)",
"psalm:update-baseline": "vendor-bin/psalm/vendor/bin/psalm --threads=$(nproc) --update-baseline --set-baseline=tests/psalm-baseline.xml"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"prepend-autoloader": false,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
},
"scripts-descriptions": {
"dev-tools:install": "Install isolated development tools under vendor-bin",
"runtime-tools:install": "Install the isolated runtime build tooling needed in production",
"thirdparty:build:auto": "Build scoped runtime dependencies using the production or development toolchain as appropriate",
"thirdparty:build": "Build scoped runtime dependencies for the module"
}
}