Skip to content

Commit

Permalink
#9753 Add composer custom repositories for jquery-ui, jquery-validate
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Aug 12, 2024
1 parent 6b900d5 commit 07b8bcd
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 5 deletions.
33 changes: 29 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
"staudenmeir/laravel-upsert": "^1.3",
"cweagans/composer-patches": "^1.7",
"composer/semver": "*",
"php81_bc/strftime": "^0.5.0"
"php81_bc/strftime": "^0.5.0",
"components/jquery": "3.7.1",
"jquery/ui": "1.13.3",
"jquery/validation": "1.19.5"
},
"require-dev": {
"phpunit/phpunit": "~9",
Expand All @@ -41,16 +44,38 @@
},
"scripts": {
"post-install-cmd": [
"@copyNodeModuleDeps"
"@copyVendorAssets"
],
"copyNodeModuleDeps": [
"PKP\\dev\\ComposerScript::copyNodeModuleDeps"
"copyVendorAssets": [
"PKP\\dev\\ComposerScript::copyVendorAssets"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/asmecher/ADOdb"
},
{
"type": "package",
"package": {
"name": "jquery/ui",
"version": "1.13.3",
"dist": {
"url": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.3.tgz",
"type": "tar"
}
}
},
{
"type": "package",
"package": {
"name": "jquery/validation",
"version": "1.19.5",
"dist": {
"url": "https://registry.npmjs.org/jquery-validation/-/jquery-validation-1.19.5.tgz",
"type": "tar"
}
}
}
],
"extra": {
Expand Down
69 changes: 68 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 07b8bcd

Please sign in to comment.