Skip to content

Commit

Permalink
Merge pull request #4 from Dhii/task/remove-redundant-dep
Browse files Browse the repository at this point in the history
  • Loading branch information
XedinUnknown authored Dec 8, 2021
2 parents 03383af + bc3ce35 commit 75ed82a
Show file tree
Hide file tree
Showing 14 changed files with 489 additions and 312 deletions.
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
.env.example export-ignore
docker-compose.yml export-ignore
docker export-ignore
composer.json export-ignore
composer.lock export-ignore
.gitattributes export-ignore
.github export-ignore
.gitignore export-ignore
CHANGELOG.md export-ignore
*.xml.dist export-ignore
README.md export-ignore
tests export-ignore

* text eol=lf
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Continuous Integration
on: [push, pull_request]
on: [push]
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
run: ./vendor/bin/phpunit

- name: Psalm
run: ./vendor/bin/psalm --show-info=false --threads=8 --diff
run: ./vendor/bin/psalm --show-info=true --threads=8 --diff

- name: PHPCS
run: ./vendor/bin/phpcs -s --report-source --runtime-set ignore_warnings_on_exit 1
run: ./vendor/bin/phpcs --report=full --runtime-set ignore_warnings_on_exit 1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/.env

/.idea/workspace.xml
/.idea/shelf/

/vendor/
48 changes: 48 additions & 0 deletions .idea/codeStyles/Project.xml

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

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

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

57 changes: 57 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

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

7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

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

11 changes: 10 additions & 1 deletion .idea/php.xml

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

1 change: 0 additions & 1 deletion .idea/versions.iml

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

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [[*next-version*]] - YYYY-MM-DD
### Fixed
- Remove redundant dependency (#4).

## [0.1.0-alpha2] - 2021-03-05
### Added
Expand Down
11 changes: 3 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
],
"require": {
"php": "^7.1 | ^8.0",
"dhii/package-interface": "^0.1.0-alpha3",
"dhii/stringable-interface": "^0.2.0-alpha1"
"dhii/package-interface": "^0.1.0-alpha3"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"vimeo/psalm": "^4.4.0",
"slevomat/coding-standard": "^6.0"
"slevomat/coding-standard": "^6.0",
"symfony/polyfill-php80": "^1.19"
},
"autoload": {
"psr-4": {
Expand All @@ -28,10 +28,5 @@
"psr-4": {
"Dhii\\Versions\\Test\\Functional\\": "tests/func"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}
Loading

0 comments on commit 75ed82a

Please sign in to comment.