Skip to content

Commit bf08990

Browse files
committed
removes hardcoded schemes
1 parent 17ba51e commit bf08990

File tree

4 files changed

+6191
-5
lines changed

4 files changed

+6191
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.project
33
.settings
44
.buildpath
5-
composer.lock
65
src/config/autoload/*.local.php
76
*.ini
87
*.properties

composer.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"name" : "php_ug/website",
3+
"description" : "The website showing all PHP-Usergroups on the worldmap",
4+
"license" : "MIT",
25
"minimum-stability": "stable",
36
"require": {
47
"ext-curl": "*",
@@ -10,7 +13,6 @@
1013
"org_heigl/hybridauth" : "dev-feature/multipleProviders@dev",
1114
"hybridauth/hybridauth" : "@dev",
1215
"org_heigl/geolocation" : "~1.0",
13-
"components/jquery" : "@dev",
1416
"sabre/vobject" : "~4.0@dev",
1517
"monolog/monolog" : "~1.9",
1618
"willdurand/geocoder" : "~2.4",
@@ -25,7 +27,11 @@
2527
},
2628
"autoload" : {
2729
"psr-0" : {
28-
"Phpug\\" : "src/module/Phpug/src",
30+
"Phpug\\" : "src/module/Phpug/src"
31+
}
32+
},
33+
"autoload-dev" : {
34+
"psr-0" : {
2935
"PhpugTest\\" : "src/module/Phpug/tests"
3036
}
3137
}

0 commit comments

Comments
 (0)