imliam / php-indefinite-article
Determine the indefinite article of an English term
Installs: 138 118
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 6
Open Issues: 1
Requires
- php: ^7.1
Requires (Dev)
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-10-13 12:26:27 UTC
README
Determine the indefinite article of an English term.
An indefinite article is the word that comes before nouns or noun equivalents in English, such as "a" or "an". If the word starts with a consonant sound, the article used should be "a" — for example "banana" becomes "a banana". If the word starts with a vowel sound, the article used should be "an" — for example "apple" becomes "an apple".
This is not as simple as checking whether the first character of the word is a vowel or consonant as that does not determine the sound pronounced when speaking the word.
This is a port of Eamon Nerbonne's original solution for the problem.
💾 Installation
You can install the package with Composer using the following command:
composer require imliam/php-indefinite-article:^1.0.0
📝 Usage
$word = new ImLiam\IndefiniteArticle\IndefiniteArticle('apple'); echo $word->parse(); // "an apple" echo $word->article(); // "an"
✅ Testing
composer test
🔖 Changelog
Please see the changelog file for more information on what has changed recently.
⬆️ Upgrading
Please see the upgrading file for details on upgrading from previous versions.
🎉 Contributing
Please see the contributing file and code of conduct for details on contributing to the project.
🔒 Security
If you discover any security related issues, please email liam@liamhammett.com instead of using the issue tracker.
👷 Credits
- Liam Hammett
- Eamon Nerbonne for the original solution
- All Contributors
♻️ License
The MIT License (MIT). Please see the license file for more information.