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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
38 changes: 0 additions & 38 deletions .circleci/config.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .codeclimate.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .editorconfig

This file was deleted.

1 change: 1 addition & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Specify files that shouldn't be modified by Fern
10 changes: 0 additions & 10 deletions .gitattributes

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

5 changes: 0 additions & 5 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/dependabot.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: ci

on: [push]

jobs:
compile:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"

- name: Install tools
run: |
composer install

- name: Build
run: |
composer build

- name: Analyze
run: |
composer analyze

unit-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"

- name: Install tools
run: |
composer install

- name: Run Tests
run: |
composer test
11 changes: 0 additions & 11 deletions .github/workflows/label-ai-generated-prs.yml

This file was deleted.

10 changes: 4 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/vendor
composer.lock

# PHPUnit
phpunit.phar
phpunit.xml
.idea
.php-cs-fixer.cache
.phpunit.result.cache
composer.lock
vendor/
110 changes: 0 additions & 110 deletions CHANGES.txt

This file was deleted.

12 changes: 0 additions & 12 deletions LICENSE

This file was deleted.

Loading