Skip to content

Commit

Permalink
Merge pull request #13 from shahmal1yev/development
Browse files Browse the repository at this point in the history
[BSS-46] GetFollowers, GetProfiles, CreateRecord and PostBuilder API
  • Loading branch information
shahmal1yev authored Nov 8, 2024
2 parents c2a206c + a64e718 commit b29a667
Show file tree
Hide file tree
Showing 211 changed files with 5,998 additions and 3,197 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
matrix:
php-version: ['7.4', '8.0', '8.1']
name: PHP ${{ matrix.php-version }} Test

env:
BLUESKY_IDENTIFIER: ${{ secrets.BLUESKY_IDENTIFIER }}
BLUESKY_PASSWORD: ${{ secrets.BLUESKY_PASSWORD }}

steps:
- uses: shivammathur/setup-php@v2
with:
Expand Down Expand Up @@ -43,7 +48,6 @@ jobs:

- name: Run Feature Tests
run: composer run-script test-feature
continue-on-error: true

- name: Static Analyse
run: composer run-script analyse
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,15 @@ fabric.properties
# Build data
/build/

# End of https://www.toptal.com/developers/gitignore/api/phpstorm+all,composer,phpunit
### PHP-CS-Fixer ###
# Covers PHP CS Fixer
# Reference: https://cs.symfony.com/

# Generated files
.php-cs-fixer.cache

# Local config See: https://cs.symfony.com/doc/config.html
.php-cs-fixer.php

# End of https://www.toptal.com/developers/gitignore/api/php-cs-fixer

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Eldar Shahmaliyev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit b29a667

Please sign in to comment.