Compare commits

...

7 Commits

12
.gitattributes vendored

@ -1,4 +1,8 @@
/tests export-ignore
/.git* export-ignore
/*.yml export-ignore
/*.xml export-ignore
/docs/*.py export-ignore
/docs/*.txt export-ignore
/docs/_* export-ignore
/tests export-ignore
/.git* export-ignore
/*.yml export-ignore
/*.xml export-ignore
/*.xml.dist export-ignore

@ -9,6 +9,7 @@ cache:
.test:
before_script:
- php -v
# install system packages
- apt-get update && apt-get install -y git unzip
# install extensions
@ -41,18 +42,11 @@ test-7.4:
stage: test
image: php:7.4
## current release
test-8.0:
## latest 8
test-8:
extends: .test
stage: test
image: php:8.0
# latest unstable
test-rc:
extends: .test
stage: test
image: php:rc
allow_failure: true
image: php:8
# coverage
coverage:

@ -19,6 +19,9 @@
"docs": "https://php-path.readthedocs.io/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
@ -38,9 +41,9 @@
"symfony/polyfill-php81": "^1.22"
},
"require-dev": {
"phpunit/phpunit": ">= 7 < 10",
"phpunit/phpunit": "^9.5",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^10@dev",
"sandfox.dev/code-standard": "^1",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^4.11"
}

@ -32,10 +32,10 @@ The library is available as open source under the terms of the `MIT License`_.
.. |Packagist| image:: https://img.shields.io/packagist/v/arokettu/path.svg?style=flat-square
:target: https://packagist.org/packages/arokettu/path
.. |GitHub| image:: https://img.shields.io/badge/get%20on-GitHub-informational.svg?style=flat-square&logo=github
:target: https://github.com/arokettu/path
:target: https://github.com/arokettu/php-path
.. |GitLab| image:: https://img.shields.io/badge/get%20on-GitLab-informational.svg?style=flat-square&logo=gitlab
:target: https://gitlab.com/sandfox/path
:target: https://gitlab.com/sandfox/php-path
.. |Bitbucket| image:: https://img.shields.io/badge/get%20on-Bitbucket-informational.svg?style=flat-square&logo=bitbucket
:target: https://bitbucket.org/sandfox/path
:target: https://bitbucket.org/sandfox/php-path
.. |Gitea| image:: https://img.shields.io/badge/get%20on-Gitea-informational.svg?style=flat-square&logo=gitea
:target: https://sandfox.org/sandfox/path
:target: https://sandfox.org/sandfox/php-path

@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
convertDeprecationsToExceptions="true"
executionOrder="random"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<testsuites>
<testsuite name="all">

Loading…
Cancel
Save