Skip to content

Commit a836485

Browse files
authored
Merge pull request #1 from bigfoot90/master
Allow for Symfony4 components and ignore composer.lock from git
2 parents fbbac22 + 68b3a35 commit a836485

20 files changed

+8
-2101
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
vendor/
2+
composer.lock

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@
2828
],
2929
"require": {
3030
"mauretto78/in-memory-list": "^2.0",
31-
"symfony/http-kernel": "~2.3|~3.0",
32-
"symfony/dependency-injection": "~2.3|~3.0",
33-
"symfony/yaml": "~2.3|~3.0",
34-
"symfony/config": "~2.3|~3.0",
35-
"symfony/framework-bundle": "^3.3",
36-
"sensio/framework-extra-bundle": "^3.0",
31+
"symfony/http-kernel": "^2.3|^3.0|^4.0",
32+
"symfony/dependency-injection": "^2.3|^3.0|^4.0",
33+
"symfony/yaml": "^2.3|^3.0|^4.0",
34+
"symfony/config": "^2.3|^3.0|^4.0",
35+
"symfony/framework-bundle": "^3.3|^4.0|^5.0",
36+
"sensio/framework-extra-bundle": "^3.0|^4.0",
3737
"twig/extensions": "^1.5"
3838
},
3939
"autoload": {
4040
"psr-4": {
41-
"InMemoryList\\Bundle\\": ""
41+
"InMemoryList\\Bundle\\": "src/"
4242
}
4343
}
4444
}

0 commit comments

Comments
 (0)