Skip to content

Commit 7f26128

Browse files
authored
Merge pull request #146 from square/fern-bot/02-18-2025-1033PM
🌿 Fern Regeneration -- February 18, 2025
2 parents 6c80937 + 70e51a9 commit 7f26128

File tree

5,662 files changed

+318162
-227141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,662 files changed

+318162
-227141
lines changed

.fernignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Specify files that shouldn't be modified by Fern
2+
3+
.github/workflows/ci.yml
4+
README.md
5+
phpstan.neon
6+
src/Exceptions/SquareApiException.php
7+
src/Legacy
8+
src/Utils/WebhooksHelper.php
9+
tests/Integration

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/labeler.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: ci
2+
3+
on: [push]
4+
5+
jobs:
6+
compile:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v4
12+
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: "8.1"
17+
18+
- name: Install tools
19+
run: |
20+
composer install
21+
22+
- name: Build
23+
run: |
24+
composer build
25+
26+
- name: Analyze
27+
run: |
28+
composer analyze
29+
30+
test:
31+
runs-on: ubuntu-latest
32+
env:
33+
TEST_SQUARE_TOKEN: ${{ secrets.TEST_SQUARE_TOKEN }}
34+
35+
steps:
36+
- name: Checkout repo
37+
uses: actions/checkout@v4
38+
39+
- name: Setup PHP
40+
uses: shivammathur/setup-php@v2
41+
with:
42+
php-version: "8.1"
43+
44+
- name: Install tools
45+
run: |
46+
composer install
47+
48+
- name: Run Tests
49+
run: |
50+
composer test

.github/workflows/php.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
composer.phar
2-
composer.lock
3-
vendor/
1+
.idea
2+
.php-cs-fixer.cache
43
.phpunit.result.cache
5-
coverage/
4+
composer.lock
5+
vendor/

.phan/config.php

Lines changed: 0 additions & 77 deletions
This file was deleted.

0 commit comments

Comments
 (0)