Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade/enso6 dr #437

Merged
merged 31 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ac3eb60
upgrade dynamic methods
AbdullahiAbdulkabir Nov 23, 2023
3b1e55b
Apply fixes from StyleCI
StyleCIBot Nov 23, 2023
ce3fbc1
fix
AbdullahiAbdulkabir Jan 20, 2024
7800752
Update
AbdullahiAbdulkabir Jan 30, 2024
13d447a
Apply fixes from StyleCI
StyleCIBot Jan 30, 2024
07c907e
upgrade
AbdullahiAbdulkabir Feb 1, 2024
51e707c
update
AbdullahiAbdulkabir Feb 1, 2024
4d7fbbd
update
AbdullahiAbdulkabir Feb 5, 2024
f692631
update
AbdullahiAbdulkabir Feb 11, 2024
d62785d
doctrine update
AbdullahiAbdulkabir Feb 12, 2024
87d9cce
fix docker
AbdullahiAbdulkabir Feb 14, 2024
42c73f3
update workflow
AbdullahiAbdulkabir Feb 14, 2024
91203c6
update php version workflow
AbdullahiAbdulkabir Feb 14, 2024
5eab9f8
update php version workflow
AbdullahiAbdulkabir Feb 14, 2024
78c2fad
update
AbdullahiAbdulkabir Feb 15, 2024
be42f17
update factory
AbdullahiAbdulkabir Feb 15, 2024
7e568e8
update
AbdullahiAbdulkabir Feb 16, 2024
e042423
laravel 10 updates
vmcvlad Feb 26, 2024
3f406cb
updates
vmcvlad Feb 28, 2024
01a4a27
fix
vmcvlad Feb 28, 2024
db8c0ad
L10 updates
AbdullahiAbdulkabir Mar 5, 2024
c3123f7
Apply fixes from StyleCI
StyleCIBot Mar 5, 2024
3415368
updates
vmcvlad Mar 12, 2024
3dda1f2
attempt
vmcvlad Mar 12, 2024
1fdebc3
Update main.yml
vmcvlad Mar 28, 2024
85ddde5
Update main.yml
vmcvlad Mar 28, 2024
a0bf3e3
Update main.yml
vmcvlad Mar 28, 2024
3962fa2
Update main.yml
vmcvlad Mar 28, 2024
a700807
updates
vmcvlad Mar 29, 2024
a80232f
removes pretty print
vmcvlad Apr 2, 2024
d38272d
updates
vmcvlad Apr 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
VITE_APP_NAME="${APP_NAME}"

OWNER_COMPANY_ID=1

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: borales/actions-yarn@v2.3.0
- uses: borales/actions-yarn@v3.0.0
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'test node'
run: node -v
- name: 'install & build'
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'PhpUnit'
run: |
sudo composer install
Expand All @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'Run Phpcpd'
run: |
sudo composer install
Expand All @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'Run php-insight'
run: |
sudo composer install
Expand All @@ -95,7 +95,7 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'Run php-insight'
run: |
PHP_SC_VERSION=$(curl -s "https://api.github.com/repos/fabpot/local-php-security-checker/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/;s/^v//')
Expand All @@ -114,7 +114,7 @@ jobs:
mysql password: ${{env.DB_PASSWORD}}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
- name: 'Run migration'
run: |
sudo composer install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Homestead.yaml
.php_cs.cache
npm-debug.log
yarn-error.log
.phpunit.cache

# code editors
/.idea
Expand Down