{"id":41429696,"url":"https://github.com/blitz-php/parametres","last_synced_at":"2026-01-23T14:26:25.981Z","repository":{"id":272611553,"uuid":"916565236","full_name":"blitz-php/parametres","owner":"blitz-php","description":"Bibliothèque de paramètres pour BlitzPHP","archived":false,"fork":false,"pushed_at":"2025-03-21T14:59:41.000Z","size":70,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T02:20:51.497Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blitz-php.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-14T10:50:49.000Z","updated_at":"2025-01-29T11:48:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"149189ec-321d-492a-b927-b0225d4d61a8","html_url":"https://github.com/blitz-php/parametres","commit_stats":null,"previous_names":["blitz-php/parametres"],"tags_count":3,"template":false,"template_full_name":"blitz-php/package-skeleton","purl":"pkg:github/blitz-php/parametres","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-php%2Fparametres","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-php%2Fparametres/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-php%2Fparametres/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-php%2Fparametres/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blitz-php","download_url":"https://codeload.github.com/blitz-php/parametres/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blitz-php%2Fparametres/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28694094,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T14:15:13.573Z","status":"ssl_error","status_checked_at":"2026-01-23T14:09:05.534Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-23T14:26:24.526Z","updated_at":"2026-01-23T14:26:25.950Z","avatar_url":"https://github.com/blitz-php.png","language":"PHP","readme":"Blitz PHP - Parametres\n==============\n### Bibliothèque de paramètres dynamiques pour BlitzPHP\n\n[![Tests](https://github.com/blitz-php/parametres/actions/workflows/run-tests.yml/badge.svg)](https://github.com/blitz-php/parametres/actions/workflows/run-tests.yml)\n[![Code Coverage](https://scrutinizer-ci.com/g/blitz-php/parametres/badges/coverage.png?b=main)](https://scrutinizer-ci.com/g/blitz-php/parametres/?branch=main)\n[![Coding Standards](https://github.com/blitz-php/parametres/actions/workflows/test-coding-standards.yml/badge.svg)](https://github.com/blitz-php/parametres/actions/workflows/test-coding-standards.yml)\n[![Build Status](https://scrutinizer-ci.com/g/blitz-php/parametres/badges/build.png?b=main)](https://scrutinizer-ci.com/g/blitz-php/parametres/build-status/main)\n[![Code Intelligence Status](https://scrutinizer-ci.com/g/blitz-php/parametres/badges/code-intelligence.svg?b=main)](https://scrutinizer-ci.com/code-intelligence)\n[![Quality Score](https://img.shields.io/scrutinizer/g/blitz-php/parametres.svg?style=flat-square)](https://scrutinizer-ci.com/g/blitz-php/parametres)\n[![PHPStan](https://github.com/blitz-php/parametres/actions/workflows/test-phpstan.yml/badge.svg)](https://github.com/blitz-php/parametres/actions/workflows/test-phpstan.yml)\n[![PHPStan level](https://img.shields.io/badge/PHPStan-level%206-brightgreen)](phpstan.neon.dist)\n\n[![Total Downloads](https://poser.pugx.org/blitz-php/parametres/downloads)](https://packagist.org/packages/blitz-php/parametres)\n[![Latest Version](https://img.shields.io/packagist/v/blitz-php/parametres.svg?style=flat-square)](https://packagist.org/packages/blitz-php/parametres)\n![PHP](https://img.shields.io/badge/PHP-%5E8.1-blue)\n![BlitzPHP](https://img.shields.io/badge/BlitzPHP-%5E0.11.3-yellow)\n[![Software License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n\n\u003cbr\u003e\n\nIntroduction\n------------\n\n## Installation\n\nVous pouvez installer le package via composer :\n\n```bash\ncomposer require blitz-php/parametres\n```\n\n## Utilisation de base\n\nDéfinir une valeur : \n\n```php \nservice('parametres')-\u003eset('app.site_name', 'Example'); \n``` \n\nObtenir une valeur : \n\n```php \nservice('parametres')-\u003eget('app.site_name'); \n``` \n\nSuppriemr une valeur : \n\n```php \nservice('parametres')-\u003eforget('app.site_name');\n``` \n\n## Documentation \n\nLire la documentation complète : http://blitz-php.byethost14.com \n\n## Contribuer \n\nNous acceptons et encourageons les contributions de la communauté sous n'importe quelle forme. Peu importe que vous sachiez coder, écrire de la documentation ou aider à trouver des bogues, toutes les contributions sont les bienvenues. \n\nVeuillez consulter [CONTRIBUTING.md](CONTRIBUTING.md) pour plus de détails.\n\n## Credits\n\nCe package est une réadaptation du package \u003ca href=\"https://github.com/codeigniter4/settings\" target=\"_blank\"\u003eCodeIgniter/Settings\u003c/a\u003e pour pouvoir avoir le même fonctionnement avec BlitzPHP. De ce fait tout le mérite revient à \u003ca href=\"https://github.com/codeigniter4/settings/graphs/contributors\" target=\"_blank\"\u003etous les contributeurs de ce projet\u003c/a\u003e que nous remercions sincerement pour ce qu'ils font pour l'évolution du développement web\n\nPour la réadaptation, nous disons merci à : \n- [Dimitri Sitchet Tomkeu](http://github.com/dimtrovich)\n- [Tous les Contributeurs](../../contributors)\n\n## Licence\n\n**Parametres** est un package open source publié sous licence MIT. Veuillez consulter [le fichier de licence](LICENSE.md) pour plus d'informations.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblitz-php%2Fparametres","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblitz-php%2Fparametres","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblitz-php%2Fparametres/lists"}