Compare commits
No commits in common. "master" and "v0.1.0" have entirely different histories.
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php: [ '8.2', '8.3' ]
|
||||
php: [ '8.1', '8.2', '8.3' ]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,4 +6,3 @@
|
|||
composer.lock
|
||||
/.php-cs-fixer.cache
|
||||
/.phpstan/
|
||||
.junie.json
|
||||
|
|
@ -8,5 +8,5 @@ Unreleased
|
|||
- Composer: metadata (authors, keywords, homepage, support), scripts (validate, analyse, lint, fix, test)
|
||||
- Docs: Documented hashing normalization and boundary behavior in README
|
||||
|
||||
0.1.0 - 2025-12-09
|
||||
0.1.0 - YYYY-MM-DD
|
||||
- Initial release with core components and tests
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
Feature flag handling for PHP. Simple, framework-agnostic, and lightweight.
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"name": "getphred/flagpole",
|
||||
"name": "phred/flagpole",
|
||||
"description": "Feature flag handling library for PHP. Simple, fast, and framework-agnostic.",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Phred",
|
||||
"email": "phred@getphred.com",
|
||||
"homepage": "https://getphred.com",
|
||||
"email": "phred@phred.com",
|
||||
"homepage": "https://phred.com",
|
||||
"role": "Owner"
|
||||
}
|
||||
],
|
||||
|
|
@ -19,13 +19,13 @@
|
|||
"ab-testing",
|
||||
"php"
|
||||
],
|
||||
"homepage": "https://github.com/getphred/flagpole",
|
||||
"homepage": "https://github.com/phred/flagpole",
|
||||
"support": {
|
||||
"issues": "https://github.com/getphred/flagpole/issues",
|
||||
"source": "https://github.com/getphred/flagpole"
|
||||
"issues": "https://github.com/phred/flagpole/issues",
|
||||
"source": "https://github.com/phred/flagpole"
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.2"
|
||||
"php": ">=8.1"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue