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

|

|
||||||

|

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