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
1 change: 0 additions & 1 deletion .coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
service_name: travis-ci
src_dir: .
coverage_clover: build/logs/clover.xml
14 changes: 4 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
language: php

php:
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- 'hhvm'
- '7.2'
- '7.3'
- '7.4'

before_script:
- composer self-update
Expand All @@ -16,11 +14,7 @@ script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml

after_script:
- php vendor/bin/coveralls

matrix:
allow_failures:
- php: 'hhvm'
- php vendor/bin/php-coveralls

notifications:
hipchat:
Expand Down
177 changes: 0 additions & 177 deletions benchmarks/Webfactory/Doctrine/ORMTestInfrastructure/ImportEvent.php

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

31 changes: 17 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,27 @@
}
],
"require": {
"php": "^5.5.9 | ^7.0.0",
"doctrine/orm": "~2.4"
"php": ">=7.2",
"doctrine/orm": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"satooshi/php-coveralls": "~0.6",
"squizlabs/php_codesniffer": "~1.0",
"phpmd/phpmd": "~1.0",
"sebastian/phpcpd": "~2.0",
"mayflower/php-codebrowser": "~1.1",
"phploc/phploc": "~2.0",
"pdepend/pdepend": "~1.1",
"athletic/athletic": "^0.1.8"
"mayflower/php-codebrowser": "^2.3",
"php-coveralls/php-coveralls": "^2.4",
"phploc/phploc": "^5.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4.1",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"test": "vendor/bin/phpunit",
"benchmark": "php -d xdebug.remote_autostart=0 -d xdebug.remote_enable=0 -d xdebug.default_enable=0 vendor/bin/athletic --path benchmarks"
"test-coverage": "@php vendor/bin/phpunit --colors=always --coverage-html=build/html-coverage",
"sniff": "@php vendor/bin/phpcs",
"format": "@php vendor/bin/phpcbf",
"phploc": "@php vendor/bin/phploc src > build/phploc.txt",
"phpcpd": "@php vendor/bin/phpcpd src tests",
"phpstan": "@php -d memory_limit=-1 vendor/bin/phpstan analyse src"
},
"autoload": {
"psr-0": {
Expand All @@ -41,8 +45,7 @@
},
"autoload-dev": {
"classmap": [
"tests/Webfactory/Doctrine/ORMTestInfrastructure/_files/ORMInfrastructure/",
"benchmarks"
"tests/Webfactory/Doctrine/ORMTestInfrastructure/_files/ORMInfrastructure/"
]
},
"config": {
Expand Down
Loading