-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): add json as composer dep and remove all annotations (#656)
* chore(deps): add json as composer dep and remove all annotations Signed-off-by: Florian Steffens <[email protected]> * fix indentation Signed-off-by: Florian Steffens <[email protected]> --------- Signed-off-by: Florian Steffens <[email protected]> (cherry picked from commit 0bd7821)
- Loading branch information
Florian
committed
Nov 9, 2023
1 parent
48295bf
commit ec2d6c8
Showing
5 changed files
with
42 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,44 @@ | ||
{ | ||
"name": "nextcloud/tables", | ||
"description": "This app is for managing data in tables.", | ||
"type": "project", | ||
"license": "AGPL", | ||
"authors": [ | ||
{ | ||
"name": "Florian Steffens", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require-dev": { | ||
"nextcloud/coding-standard": "^v1.0.0", | ||
"vimeo/psalm": "^5.6.0", | ||
"nextcloud/ocp": "dev-master", | ||
"phan/phan": "5.x", | ||
"staabm/annotate-pull-request-from-checkstyle": "^1.8", | ||
"phpunit/phpunit": "^9" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"classmap-authoritative": true, | ||
"platform": { | ||
"php": "7.4" | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@test:unit" | ||
], | ||
"test:unit": "./vendor/bin/phpunit -c tests/unit/phpunit.xml", | ||
"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": "./vendor/bin/psalm --show-info=true --no-cache", | ||
"psalm:update-baseline": "./vendor/bin/psalm --update-baseline", | ||
"psalm:fix": "./vendor/bin/psalm --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType", | ||
"psalm:fix:dry": "./vendor/bin/psalm --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType --dry-run" | ||
}, | ||
"require": { | ||
"phpoffice/phpspreadsheet": "^1.28" | ||
} | ||
"name": "nextcloud/tables", | ||
"description": "This app is for managing data in tables.", | ||
"type": "project", | ||
"license": "AGPL", | ||
"authors": [ | ||
{ | ||
"name": "Florian Steffens", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require-dev": { | ||
"nextcloud/coding-standard": "^v1.0.0", | ||
"vimeo/psalm": "^5.6.0", | ||
"nextcloud/ocp": "dev-master", | ||
"phan/phan": "5.x", | ||
"staabm/annotate-pull-request-from-checkstyle": "^1.8", | ||
"phpunit/phpunit": "^9" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"classmap-authoritative": true, | ||
"platform": { | ||
"php": "7.4" | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@test:unit" | ||
], | ||
"test:unit": "./vendor/bin/phpunit -c tests/unit/phpunit.xml", | ||
"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": "./vendor/bin/psalm --show-info=true --no-cache", | ||
"psalm:update-baseline": "./vendor/bin/psalm --update-baseline", | ||
"psalm:fix": "./vendor/bin/psalm --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType", | ||
"psalm:fix:dry": "./vendor/bin/psalm --no-cache --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType --dry-run" | ||
}, | ||
"require": { | ||
"phpoffice/phpspreadsheet": "^1.28", | ||
"ext-json": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters