mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
Move dev dependencies to vendor-bin to prevent conflicts
Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
parent
93dca1ab4a
commit
61457a414a
9 changed files with 7011 additions and 3849 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,6 +2,7 @@
|
|||
.vscode
|
||||
*.iml
|
||||
/vendor/
|
||||
/vendor-bin/**/vendor/
|
||||
/tests/integration/vendor
|
||||
/tests/integration/output
|
||||
/js/
|
||||
|
|
|
|||
|
|
@ -12,16 +12,8 @@
|
|||
"tecnickcom/tcpdf": "^6.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"byjg/swagger-test": "^3.1",
|
||||
"donatj/mock-webserver": "^2.5",
|
||||
"guzzlehttp/psr7": "^2.4",
|
||||
"mikey179/vfsstream": "^1.6",
|
||||
"nextcloud/coding-standard": "^1.0",
|
||||
"nextcloud/ocp": "dev-master",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"symfony/yaml": "^5.4",
|
||||
"vimeo/psalm": "^4.25"
|
||||
"bamarni/composer-bin-plugin": "^1.8",
|
||||
"roave/security-advisories": "dev-latest"
|
||||
},
|
||||
"config": {
|
||||
"autoloader-suffix": "Libresign",
|
||||
|
|
@ -30,13 +22,29 @@
|
|||
"sort-packages": true,
|
||||
"platform": {
|
||||
"php": "7.4"
|
||||
},
|
||||
"allow-plugins": {
|
||||
"bamarni/composer-bin-plugin": true
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||
"cs:fix": "php-cs-fixer fix",
|
||||
"psalm": "psalm --threads=1"
|
||||
"psalm": "psalm --threads=1",
|
||||
"post-install-cmd": [
|
||||
"@composer bin all install --ansi",
|
||||
"composer dump-autoload"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@composer bin all update --ansi",
|
||||
"composer dump-autoload"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"bamarni-bin": {
|
||||
"bin-links": true
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
|
|
|||
3908
composer.lock
generated
3908
composer.lock
generated
File diff suppressed because it is too large
Load diff
5
vendor-bin/coding-standard/composer.json
Normal file
5
vendor-bin/coding-standard/composer.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"require-dev": {
|
||||
"nextcloud/coding-standard": "^1.0"
|
||||
}
|
||||
}
|
||||
2169
vendor-bin/coding-standard/composer.lock
generated
Normal file
2169
vendor-bin/coding-standard/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
10
vendor-bin/phpunit/composer.json
Normal file
10
vendor-bin/phpunit/composer.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"donatj/mock-webserver": "^2.5",
|
||||
"mikey179/vfsstream": "^1.6",
|
||||
"byjg/swagger-test": "^3.1",
|
||||
"guzzlehttp/psr7": "^2.4",
|
||||
"symfony/yaml": "^5.4"
|
||||
}
|
||||
}
|
||||
2492
vendor-bin/phpunit/composer.lock
generated
Normal file
2492
vendor-bin/phpunit/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
6
vendor-bin/psalm/composer.json
Normal file
6
vendor-bin/psalm/composer.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"require-dev": {
|
||||
"vimeo/psalm": "^4.30",
|
||||
"nextcloud/ocp": "^24.0"
|
||||
}
|
||||
}
|
||||
2239
vendor-bin/psalm/composer.lock
generated
Normal file
2239
vendor-bin/psalm/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue