Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Merge aae088c into 7d73b23
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacePossum committed Apr 19, 2018
2 parents 7d73b23 + aae088c commit f03e00a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/Tests export-ignore
/TestsProject export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore
tests.php export-ignore
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ matrix:
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
- php: 7.2
env: SYMFONY_VERSION=4.0.*

sudo: false

Expand Down
18 changes: 15 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,33 @@
}
],
"require": {
"php": ">=5.3",
"pagerfanta/pagerfanta": "1.0.*",
"symfony/framework-bundle": "~2.3|~3.0|~4.0",
"symfony/twig-bundle": "~2.3|~3.0|~4.0",
"symfony/property-access": "~2.3|~3.0|~4.0",
"pagerfanta/pagerfanta": "1.0.*"
"symfony/twig-bundle": "~2.3|~3.0|~4.0"
},
"require-dev": {
"symfony/symfony": "~2.3|~3.0|~4.0",
"phpunit/phpunit": "~3.7|~4.0"
},
"autoload": {
"psr-4": { "WhiteOctober\\PagerfantaBundle\\": "" }
"classmap": [
"WhiteOctoberPagerfantaBundle.php"
],
"psr-4": {
"WhiteOctober\\PagerfantaBundle\\DependencyInjection\\": "DependencyInjection",
"WhiteOctober\\PagerfantaBundle\\EventListener\\": "EventListener",
"WhiteOctober\\PagerfantaBundle\\Twig\\": "Twig",
"WhiteOctober\\PagerfantaBundle\\View\\": "View"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}

0 comments on commit f03e00a

Please sign in to comment.