Skip to content

Commit

Permalink
Update php version ^7.3
Browse files Browse the repository at this point in the history
Fix code style fixer
Fix code style
  • Loading branch information
tadas aučiūnas committed Dec 28, 2020
1 parent ebd2497 commit 9da123e
Show file tree
Hide file tree
Showing 10 changed files with 113 additions and 126 deletions.
58 changes: 0 additions & 58 deletions .php_cs

This file was deleted.

1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.2
- 7.3
- 7.4
- hhvm
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
"bin/assetic"
],
"require": {
"php": "^7.2",
"php": "^7.3",
"assetic/framework": "~2.0.0",
"widmogrod/php-functional": "^1.0",
"zendframework/zend-mvc": "^3.0",
"symfony/console": "^3.1.3 | ^4.0 | ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"fabpot/php-cs-fixer": "^2.17"
"friendsofphp/php-cs-fixer": "^2.17"
},
"suggest": {
"leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
Expand All @@ -41,7 +41,7 @@
"scripts": {
"test": "phpunit",
"fix-code": "php-cs-fixer fix",
"check-code": "php-cs-fixer fix --verbose --diff --dry-run"
"check-code": "php-cs-fixer fix src/ --verbose --diff --dry-run --using-cache=no"
},
"autoload": {
"psr-0": {
Expand Down
128 changes: 88 additions & 40 deletions composer.lock

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

6 changes: 3 additions & 3 deletions src/AsseticBundle/CacheBuster/LastModifiedStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace AsseticBundle\CacheBuster;

use Assetic\Asset\AssetInterface,
Assetic\Contracts\Factory\Worker\WorkerInterface,
Assetic\Factory\AssetFactory;
use Assetic\Asset\AssetInterface;
use Assetic\Contracts\Factory\Worker\WorkerInterface;
use Assetic\Factory\AssetFactory;

class LastModifiedStrategy implements WorkerInterface
{
Expand Down
6 changes: 3 additions & 3 deletions src/AsseticBundle/CacheBuster/NoCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace AsseticBundle\CacheBuster;

use Assetic\Asset\AssetInterface,
Assetic\Contracts\Factory\Worker\WorkerInterface,
Assetic\Factory\AssetFactory;
use Assetic\Asset\AssetInterface;
use Assetic\Contracts\Factory\Worker\WorkerInterface;
use Assetic\Factory\AssetFactory;

class NoCache implements WorkerInterface
{
Expand Down
Loading

0 comments on commit 9da123e

Please sign in to comment.