Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Files and directories which won't be included in .zip archive during running `composer install --prefer-dist`

/.github export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/.travis.yml export-ignore
/phpcs.xml export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore
/.github export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.idea export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/.travis.yml export-ignore
/phpcs.xml export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore
/README.md export-ignore
/.phpunit.result.cache export-ignore
/.phpcs-cache export-ignore
/.php-cs-fixer.cache export-ignore

1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- '8.3'
- '8.4'
steps:
- name: 'Checkout Code'
Expand Down
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
/vendor/
.phpunit.result.cache
composer.lock
.phpcs-cache
.php-cs-fixer.cache
clover-coverage.xml
coverage.cobertura.xml
junit.xml
html-coverage/
phpunit-coverage.xml
var/*

###> PhpStrom Shared Project Settings ###
.idea/*
.idea/dataSources/*
.idea/httpRequests/*
!.idea/datetime-php.iml
!.idea/encodings.xml
!.idea/icon.svg
!.idea/inspectionProfiles
!.idea/markdown.xml
!.idea/modules.xml
!.idea/php-docker-settings.xml
!.idea/php-test-framework.xml
!.idea/php.xml
!.idea/phpunit.xml
!.idea/runConfigurations
!.idea/scopes
!.idea/symfony2.xml
!.idea/webResources.xml
###< PhpStrom Shared Project Settings ###
8 changes: 8 additions & 0 deletions .idea/.gitignore

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

11 changes: 11 additions & 0 deletions .idea/datetime-php.iml

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

156 changes: 156 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.

8 changes: 8 additions & 0 deletions .idea/modules.xml

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

14 changes: 14 additions & 0 deletions .idea/php-test-framework.xml

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

Loading