├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php ├── example-scripts ├── advance_example.py ├── sum_calculator.py └── sum_calculator.sh ├── phpunit.xml ├── src ├── CommandExecutor.php ├── Managers │ └── ConfigManager.php └── PhpPy.php └── tests ├── Feature └── ExampleTest.php ├── Pest.php ├── PhpPyTest.php ├── Unit └── ExampleTest.php └── fake-path └── sum_calculator.py /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/config/config.php -------------------------------------------------------------------------------- /example-scripts/advance_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/example-scripts/advance_example.py -------------------------------------------------------------------------------- /example-scripts/sum_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/example-scripts/sum_calculator.py -------------------------------------------------------------------------------- /example-scripts/sum_calculator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/example-scripts/sum_calculator.sh -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/CommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/src/CommandExecutor.php -------------------------------------------------------------------------------- /src/Managers/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/src/Managers/ConfigManager.php -------------------------------------------------------------------------------- /src/PhpPy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/src/PhpPy.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/PhpPyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/tests/PhpPyTest.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/fake-path/sum_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaralalwi/php-py/HEAD/tests/fake-path/sum_calculator.py --------------------------------------------------------------------------------