php
php copied to clipboard
Exercism exercises in PHP.
The README link for the contribution guide links to the deprecated Exercism README. https://github.com/exercism/DEPRECATED.x-api/blob/master/CONTRIBUTING.md#the-exercise-data Ideally there should be a contribution guide/FAQ for PHP giving new contributors an idea of the...
One of the points I am missing in the exercises of this track is the concept of namespaces (PSR-4 compatibility). Therefore, I would like to discuss and propose the following...
Bumps [shivammathur/setup-php](https://github.com/shivammathur/setup-php) from 2.21.2 to 2.22.0. Release notes Sourced from shivammathur/setup-php's releases. 2.22.0 Support Ukraine Added support for PHP builds with debugging symbols for PHP 5.6 and above. ALPHA Docs,...
Using `configlet sync` at the time of writing is a wall of warnings. These are things to sync. I will extract one issue for each exercise, but that takes some...
- [ ] docs: instructions unsynced: all-your-base - [ ] docs: introduction missing: all-your-base - [ ] Sync test metadata to tests - [ ] Drop unnecessary strict types comments
- [ ] docs: instructions unsynced: pangram - [ ] pangram: missing 1 test case - a-m and A-M are 26 different characters but not a pangram (7138e389-83e4-4c6e-8413-1e40a0076951) - [...
`Meetup` will be the only exercise with PHP as featured language during `#48in24`! Let's prepare it well: - [ ] Run `bin/configlet sync -u -e meetup` (updates the Markdown files...
To keep away lengthy discussions from tracking issue #631 / pull requests #674 and #663 There are lots of experiences and information about the test generators of various tracks in...
@mk-mxp This is what I had in mind for a test-generator Basically using twig templating gives a lot of powerful options to the developer. The only important file here is...
The formula given is ``` pizzas = (cheese_dimension^3) / (thickness * PI * diameter) ``` It should be: ``` pizzas = (cheese_dimension^3) / (thickness * PI * (diameter/2)^2) ``` The...