Skip to content

Commit

Permalink
Fix built phar file
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Jul 14, 2021
1 parent 45ca9aa commit 5ae94c0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
run: composer install --no-interaction --prefer-source

- name: Check code style
run: ./vendor/bin/php-cs-fixer fix -v --dry-run
run: composer cs-check

- name: Execute tests
run: ./vendor/bin/phpunit
run: composer test
4 changes: 1 addition & 3 deletions box.json.dist
Expand Up @@ -24,8 +24,6 @@
]
}
],
"intercept": true,
"main": "bin/sw",
"output": "sw.phar",
"stub": true
"compression": "GZ"
}
10 changes: 2 additions & 8 deletions composer.json
Expand Up @@ -34,22 +34,16 @@
"autoload": {
"psr-4": {
"ShopwareCli\\": "src/",
"ShopwareCli\\Tests\\": "tests/"
"Shopware\\": "src/Extensions/Shopware"
}
},
"autoload-dev": {
"psr-4": {
"ShopwareCli\\": "src/",
"Shopware\\": "src/Extensions/Shopware"
"ShopwareCli\\Tests\\": "tests/"
}
},
"bin": ["bin/sw"],
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5ae94c0

Please sign in to comment.