Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added metafile and updated badges #136

Merged
merged 3 commits into from
Jul 15, 2017
Merged
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
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.editorconfig export-ignore
.gitattributes export-ignore
/.github/ export-ignore
.gitignore export-ignore
/.php_cs export-ignore
/.scrutinizer.yml export-ignore
/.styleci.yml export-ignore
/.travis.yml export-ignore
/behat.yml.dist export-ignore
/features/ export-ignore
/phpspec.ci.yml export-ignore
/phpspec.yml.dist export-ignore
/phpunit.xml.dist export-ignore
/spec/ export-ignore
/Tests/ export-ignore
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
composer.phar
build/
composer.lock
composer.phar
phpunit.xml
vendor/
13 changes: 13 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

/*
* In order to make it work, fabpot/php-cs-fixer and sllh/php-cs-fixer-styleci-bridge must be installed globally
* with composer.
*
* @link https://github.com/Soullivaneuh/php-cs-fixer-styleci-bridge
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer
*/

use SLLH\StyleCIBridge\ConfigBridge;

return ConfigBridge::create();
12 changes: 12 additions & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
preset: symfony

finder:
exclude:
- "Resources"
- "vendor"

enabled:
- short_array_syntax

disabled:
- phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ matrix:
env: SYMFONY_VERSION=4.0.*
include:
- php: 7.0
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_VERSION=3.3.* TEST_COMMAND="phpunit --coverage-text --coverage-clover=build/coverage.xml"
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_VERSION=3.3.* TEST_COMMAND="phpunit --coverage-text --coverage-clover=build/coverage.xml" COVERAGE=true
- php: 7.1
env: SYMFONY_VERSION=4.0.*

Expand All @@ -32,3 +32,7 @@ before_script:

script:
- phpunit

after_success:
- if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
2 changes: 1 addition & 1 deletion DataCollector/GeocoderDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function getProviders(): array
*
* @return array
*/
public function getProviderQueries($provider):array
public function getProviderQueries($provider): array
{
return array_filter($this->data['queries'], function ($data) use ($provider) {
return $data['providerName'] === $provider;
Expand Down
8 changes: 4 additions & 4 deletions DataCollector/ProfilingProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ private function logQuery($query, float $duration, Collection $result = null)
}

$this->queries[] = [
'query' => $query,
'queryString' => $queryString,
'duration' => $duration,
'query' => $query,
'queryString' => $queryString,
'duration' => $duration,
'providerName' => $this->getName(),
'result' => $result,
'result' => $result,
];
}

Expand Down
4 changes: 2 additions & 2 deletions ProviderFactory/GoogleMapsFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ protected static function configureOptionResolver(OptionsResolver $resolver)
{
$resolver->setDefaults([
'httplug_client' => null,
'region' => null,
'api_key' => null,
'region' => null,
'api_key' => null,
]);

$resolver->setAllowedTypes('httplug_client', [HttpClient::class, 'null']);
Expand Down
21 changes: 9 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
BazingaGeocoderBundle
=====================

[![Build
Status](https://secure.travis-ci.org/geocoder-php/BazingaGeocoderBundle.png)](http://travis-ci.org/geocoder-php/BazingaGeocoderBundle)
[![Total
Downloads](https://poser.pugx.org/willdurand/geocoder-bundle/downloads.png)](https://packagist.org/packages/willdurand/geocoder-bundle)
[![Latest Stable
Version](https://poser.pugx.org/willdurand/geocoder-bundle/v/stable.png)](https://packagist.org/packages/willdurand/geocoder-bundle)
[![Build Status](https://travis-ci.org/geocoder-php/BazingaGeocoderBundle.svg?branch=master)](http://travis-ci.org/geocoder-php/BazingaGeocoderBundle)
[![Latest Stable Version](https://poser.pugx.org/willdurand/geocoder-bundle/v/stable)](https://packagist.org/packages/willdurand/geocoder-bundle)
[![Total Downloads](https://poser.pugx.org/willdurand/geocoder-bundle/downloads)](https://packagist.org/packages/willdurand/geocoder-bundle)
[![Monthly Downloads](https://poser.pugx.org/willdurand/geocoder-bundle/d/monthly.png)](https://packagist.org/packages/willdurand/geocoder-bundle)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/geocoder-php/BazingaGeocoderBundle.svg?style=flat-square)](https://scrutinizer-ci.com/g/geocoder-php/BazingaGeocoderBundle)
[![Quality Score](https://img.shields.io/scrutinizer/g/geocoder-php/BazingaGeocoderBundle.svg?style=flat-square)](https://scrutinizer-ci.com/g/geocoder-php/BazingaGeocoderBundle)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)

Integration of the [**Geocoder**](http://github.com/geocoder-php/Geocoder) library
into Symfony2.

**Important:** this bundle is developed in sync with [Geocoder's
repository](http://github.com/geocoder-php/Geocoder). If you are using Geocoder
`1.x`, you need to use the `~1.5` releases of the bundle (or lower).

into Symfony.

Documentation
-------------
Expand All @@ -39,6 +35,7 @@ Credits
-------

* William Durand
* Tobias Nyholm
* [All contributors](https://github.com/geocoder-php/BazingaGeocoderBundle/contributors)


Expand Down
8 changes: 4 additions & 4 deletions Tests/Command/GeocodeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public function testExecute()
$country = new Country('France', 'FR');
$address = Address::createFromArray([
'coordinates' => $coordinates,
'streetNumber'=> '10',
'streetName' => 'rue Gambetta',
'zipCode' => '75020',
'locality' => 'Paris',
'streetNumber' => '10',
'streetName' => 'rue Gambetta',
'zipCode' => '75020',
'locality' => 'Paris',
'countryName' => $country->getName(),
'countryCode' => $country->getCode(),
]);
Expand Down
2 changes: 1 addition & 1 deletion Tests/Mapping/Driver/AnnotationDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function testLoadMetadata()
}

/**
* @expectedException Bazinga\Bundle\GeocoderBundle\Mapping\Exception\MappingException
* @expectedException \Bazinga\Bundle\GeocoderBundle\Mapping\Exception\MappingException
*/
public function testLoadMetadataFromWrongObject()
{
Expand Down