Skip to content

Commit 30eb0eb

Browse files
committed
Symfony 5 support
1 parent 45a833c commit 30eb0eb

File tree

7 files changed

+395
-366
lines changed

7 files changed

+395
-366
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/composer.lock
2-
/vendor/
2+
/vendor/
3+
.phpunit.result.cache

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ cache:
55
- $HOME/.composer/cache/files
66

77
php:
8-
- 7.2
98
- 7.1
10-
- 7.0
11-
- 5.6
9+
- 7.2
10+
- 7.3
11+
- 7.4
1212

1313
before_script:
1414
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-dist install

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
"issues": "https://github.com/mac-cain13/daemonizable-command/issues"
1616
},
1717
"require": {
18-
"php": ">=5.5.9",
19-
"symfony/console": "3.*|4.*",
20-
"symfony/dependency-injection": "3.*|4.*"
18+
"php": "^7.1",
19+
"symfony/console": "^4.0 || ^5.0",
20+
"symfony/dependency-injection": "^4.0 || ^5.0"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^5.4.3|^6"
23+
"phpunit/phpunit": "^7.5.20 || ^8.0"
2424
},
2525
"suggest": {
2626
"symfony/filesystem": "If you can't use Upstart or systemd"
2727
},
2828
"autoload": {
29-
"psr-0": { "Wrep\\Daemonizable\\": "src/" }
29+
"psr-4": { "Wrep\\Daemonizable\\": "src/Wrep/Daemonizable/" }
3030
},
3131
"autoload-dev": {
3232
"psr-4": { "Tests\\Wrep\\Daemonizable\\": "tests/" }

0 commit comments

Comments
 (0)