Skip to content

Browser extension every PHP developer must have. It changes styles on php.net website for a better experience of using php documentation.

License

Notifications You must be signed in to change notification settings

php-revival/php-revival

Repository files navigation

PHP Revival

GitHub Actions

Browser extension that every PHP developer must have. It changes styles on php.net website for a better experience of using php documentation. Extension adds the dark theme to php code examples, changes their color schemes and makes User Contributed Notes more readable. You'll like it.

Links

Start working on source code

All necessary scripts are in package.json file. I'm using the wrapper around a webpack that's called Laravel mix. You need to have npm or yarn JavaScript package managers.

Configuration file for Laravel mix is called webpack.mix.js, it is in the root of the project.

Clone the repo

git clone https://github.com/php-revival/php-revival.git && cd php-revival

Install all dependencies

yarn install
# or
npm i

Watch files

yarn watch
# or
npm run watch

Compile to production

yarn prod
# or
npm run prod