Skip to content
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ clover.xml
php-cs-fixer.phar
vendor
.idea
composer.lock
.phpunit.result.cache
36 changes: 24 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,39 @@
language: php

dist: trusty
cache:
directories:
- $HOME/.composer/cache

php:
- 7.2
- 7.3
- 7.4
env:
global:
- COMPOSER_ARGS="--no-interaction"

matrix:
fast_finish: true
include:
- php: 7.2
env: dependencies=highest
- php: 7.3
env: dependencies=lowest
- php: 7.3
env: dependencies=highest
- php: 7.4
env: dependencies=lowest
- php: 7.4
env: dependencies=highest
- php: 8.0
env:
- dependencies=lowest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
- php: 8.0
env:
- dependencies=highest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"

before_script:
- composer self-update
- if [ -z "$dependencies" ]; then composer install --prefer-dist -n; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-dist --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer require laminas/laminas-mvc-console:^1.1 --prefer-dist -n; fi;
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
- if [[ "$dependencies" == "lowest" ]]; then travis_retry composer update --prefer-dist --prefer-lowest --prefer-stable $COMPOSER_ARGS; fi;
- if [[ "$dependencies" == "highest" ]]; then travis_retry composer update --prefer-dist $COMPOSER_ARGS; fi;
- if [[ "$dependencies" == "highest" ]]; then travis_retry composer require laminas/laminas-mvc-console:^1.1 --prefer-dist $COMPOSER_ARGS; fi;

script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpcs --standard=PSR2 ./src ./tests/AssetManagerTest
- if [[ "$CS_CHECK" == "true" ]]; then ./vendor/bin/phpcs --standard=PSR2 ./src ./tests/AssetManagerTest; fi;
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# AssetManager
By [Wesley Overdijk](http://blog.spoonx.nl/) and [Marco Pivetta](http://ocramius.github.com/)
By [Wesley Overdijk](https://spoonx.studio/) and [Marco Pivetta](http://ocramius.github.com/)

[![Build Status](https://secure.travis-ci.org/RWOverdijk/AssetManager.png?branch=master)](http://travis-ci.org/RWOverdijk/AssetManager)
[![Latest Stable Version](https://poser.pugx.org/RWOverdijk/AssetManager/v/stable.png)](https://packagist.org/packages/RWOverdijk/AssetManager)

## ⚠️ No longer maintained

Every now and then a PR might be merged, but it's probably for the best to use a fork.

PRs without enough reputable approvals will not be merged.

## Introduction
This module is intended for usage with a default directory structure of a
[LaminasSkeletonApplication](https://github.com/laminas/laminas-mvc-skeleton/). It provides functionality to load
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.3 || ^8.0",
"laminas/laminas-modulemanager": "^2.7.2",
"laminas/laminas-stdlib": "^2.7.7 || ^3.0.1",
"laminas/laminas-stdlib": "^3.2.1",
"laminas/laminas-servicemanager": "^2.7.6 || ^3.1.1",
"laminas/laminas-loader": "^2.5.1",
"laminas/laminas-eventmanager": "^2.6.3 || ^3.0.1",
"laminas/laminas-mvc": "^2.7.9 || ^3.0.2",
"kriswallsmith/assetic": "^1.4.0",
"laminas/laminas-dependency-plugin": "^1.0"
"assetic/framework": "^2.0",
"laminas/laminas-dependency-plugin": "^2.0"
},
"require-dev": {
"laminas/laminas-http": "^2.5.4",
"laminas/laminas-view": "^2.8.1",
"laminas/laminas-cache": "^2.7.1",
"laminas/laminas-console": "^2.6",
"squizlabs/php_codesniffer": "~1.5.0",
"phpunit/phpunit": "^7.0"
"squizlabs/php_codesniffer": "^3.5.6",
"phpunit/phpunit": "^8.5.8 || ^9.1"
},
"suggest": {
"laminas/laminas-mvc-console": "laminas-mvc-console provides the ability to expose laminas-mvc as a console application"
Expand Down
Loading