Skip to content

Commit 439fa10

Browse files
committed
Merge branch 'develop'
2 parents 2910ead + 72d04f3 commit 439fa10

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

README.md

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
1-
[![version](https://img.shields.io/badge/Version-1.1.5-brightgreen.svg)](https://github.com/SimonDevelop/sirene/releases/tag/1.1.5)
1+
[![version](https://img.shields.io/badge/Version-1.1.6-brightgreen.svg)](https://github.com/SimonDevelop/sirene/releases/tag/1.1.6)
22
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.3-8892BF.svg)](https://php.net/)
33
[![Github Actions PHP](https://github.com/SimonDevelop/sirene/workflows/PHP/badge.svg)](https://github.com/SimonDevelop/sirene/actions)
44
[![GitHub license](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/SimonDevelop/sirene/blob/master/LICENSE)
55

66
# Sirene
77
Sirene est une librairie php vous permettant d'utiliser l'[API Sirene](https://api.insee.fr/catalogue/site/themes/wso2/subthemes/insee/pages/item-info.jag?name=Sirene&version=V3&provider=insee) de l'insée via des fonctions pour facilité la recherche d'établissement.
88

9-
## TODO
10-
- [x] Informations du service
11-
- [x] Recherche par siren
12-
- [x] Recherche par siret
13-
- [x] Recherche d'établissement via paramètres
14-
- [x] Ville
15-
- [x] Code Postal
16-
- [x] Raison sociale
17-
- [x] Sigle
18-
- [x] Code APE
19-
- [x] Catégorie Juridique
20-
- [x] Système de pagination
21-
- [x] Ordre d'affichage par champ
22-
239
La [documentation](https://simondevelop.github.io/sirene/) est à votre disposition.
2410

2511
#### Go to contribute !

src/Sirene.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Sirene
4343
public function __construct(array $settings = [])
4444
{
4545
if (!empty($settings)) {
46-
if(isset($settings['url_api']) && is_string($settings['url_api'])) {
46+
if (isset($settings['url_api']) && is_string($settings['url_api'])) {
4747
$this->urlApi = $settings['url_api'];
4848
}
4949
if (isset($settings["secret"]) && is_string($settings["secret"])) {

0 commit comments

Comments
 (0)