Skip to content

Commit

Permalink
Merge pull request #4 from teamneusta/refac/change-package-name
Browse files Browse the repository at this point in the history
Fix package name in composer.json
  • Loading branch information
lukadschaak committed Nov 29, 2022
2 parents bb7171e + fa172a2 commit 75ba5bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/test-and-qa.yaml
Expand Up @@ -18,9 +18,6 @@ jobs:
php-version: '8.1'
- uses: actions/checkout@v3

- name: Copy .env.test.local
run: php -r "file_exists('.env.test.local') || copy('.env.test', '.env.test.local');"

- name: Validate composer.json and composer.lock
run: composer validate --strict

Expand All @@ -29,9 +26,7 @@ jobs:
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.json') }}

- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down Expand Up @@ -68,9 +63,10 @@ jobs:
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.json') }}

- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Execute tests (Unit and Feature tests) via PHPUnit
run: composer tests
Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,5 +1,5 @@
{
"name": "teamneusta/pimcore-translation-migration",
"name": "teamneusta/pimcore-translation-migration-bundle",
"type": "pimcore-bundle",
"description": "Migrates Symfony translations to Pimcore",
"license": "GPL-3.0-or-later",
Expand Down

0 comments on commit 75ba5bf

Please sign in to comment.