Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "pecl"
-
Thank god for docker and dockerfiles, I can't stand having to install PHP extensions that require 3 to 4 programs to work properly. Especially if I just have a throwaway script and don't want to install pecl, build scripts and phpize, don't want that shit on my system1
-
Homebrew is crap ! Cannot uninstall git cannot uninstall PHP, pecl cannot install every fucking thing is restricted.6
-
So it looks like pecl.php.net is down and I have about 6 hours left to deploy my new release... Any idea what to do? God I hate this job.4
-
I just want to test my PHP code using phpunit on GitLab, what am I doing wrong?
image: php:latest
before_script:
# Install & enable Xdebug for code coverage reports
- pecl install xdebug
- docker-php-ext-enable xdebug
# Run our tests
# If Xdebug was installed you can generate a coverage report and see code coverage metrics.
test:
script:
- phpunit Test.php4