-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from UTCWeb/develop
20230509-1149
- Loading branch information
Showing
243 changed files
with
190 additions
and
53,896 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: PHP Composer | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate --strict | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
run: composer install --prefer-dist --no-progress | ||
|
||
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" | ||
# Docs: https://getcomposer.org/doc/articles/scripts.md | ||
|
||
# - name: Run test suite | ||
# run: composer run-script test |
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,2 +1,14 @@ | ||
.DS_Store | ||
.htaccess | ||
includes/vendor/* | ||
!includes/vendor/.gitkeep | ||
user/config.php | ||
|
||
# SQL | ||
*.sql | ||
*.sql.gz | ||
*.tar.gz | ||
pvirtualmin/ | ||
|
||
#IDE | ||
.idea/ |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
|
||
# BEGIN YOURLS | ||
<IfModule mod_rewrite.c> | ||
RewriteEngine On | ||
RewriteBase / | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule ^.*$ /yourls-loader.php [L] | ||
</IfModule> | ||
# END YOURLS | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: utctiny | ||
recipe: lamp | ||
config: | ||
php: '8.1' | ||
webroot: . | ||
database: mariadb | ||
xdebug: false |
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,5 +1,15 @@ | ||
# utctiny | ||
URL Shortener with [YOURLS](https://yourls.org). | ||
|
||
### Contributing | ||
|
||
- Fork it (https://github.com/UTCWeb/utctiny/fork) | ||
- Clone it (git clone https://github.com/utctiny/utctiny) | ||
- Create your feature branch (git checkout -b feature/UTCT-1-your-branch-name) | ||
- Commit your changes (git commit -m 'UTCT-1-Description of a commit') | ||
- Push to the branch (git push origin feature/UTCT-1-your-branch-name) | ||
- Create a new Pull Request | ||
|
||
### Collaborators | ||
- [UTCGilligan](https://github.com/UTCGilligan) | ||
- [MajorS](https://github.com/majorschwartz) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.