Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yourls/yourls",
"description": "Your Own URL Shortener",
"name": "utcweb/utctiny",
"description": "UTC: Your Own URL Shortener",
"type": "project",
"keywords": [
"shortener",
Expand All @@ -9,11 +9,11 @@
"url",
"bitly"
],
"homepage": "https://yourls.org",
"homepage": "https://go.utc.edu",
"license": "MIT",
"support": {
"issues": "https://github.com/YOURLS/YOURLS/issues",
"source": "https://github.com/YOURLS/YOURLS"
"issues": "https://github.com/UTCWeb/utctiny/issues",
"source": "https://github.com/UTCWeb/utctiny"
},
"require": {
"php": "^8.1",
Expand All @@ -32,8 +32,20 @@
"symfony/polyfill-mbstring": "^1.15",
"symfony/polyfill-intl-idn": "^1.17",
"spatie/array-to-xml": "^3.4",
"platformsh/laravel-bridge": "^2.2"
"yourls/seans-qrcode": "dev-develop as 1.x-dev",
"yourls/yourls-saml": "dev-develop as 1.x-dev",
"platformsh/laravel-bridge": "^1.1"
},
"repositories": [
{
"type": "path",
"url": "user/plugins/seans-qrcode"
},
{
"type": "path",
"url": "user/plugins/yourls-saml"
}
],
"require-dev": {
"ext-ctype": "*"
},
Expand All @@ -60,6 +72,12 @@
"ext-zlib": "For best performance"
},
"scripts": {
"install-plugin-deps": [
"bash -c \"find user/plugins -name \\\"composer.json\\\" -type f -exec dirname {} \\; | xargs -I{} bash -c 'echo \\\"Installing dependencies for {}\\\" && cd {} && composer install && cd - > /dev/null'\""
],
"post-install-cmd": [
"@install-plugin-deps"
],
"post-update-cmd": "bash ./includes/vendor/build-script/yourls-build.sh ./includes/vendor"
}
}
Loading