- Refactored execution unit system to use a new execution pointer system - Refactored `PhpRunner` to use the new execution pointer system - Refactored `BashRunner` to use the new execution pointer system - Refactored `LuaRunner` to use the new execution pointer system - Refactored `PerlRunner` to use the new execution pointer system - Refactored `PythonRunner` to use the new execution pointer system - Removed dependency `theseer\Autoload` in favor of ncc's own autoloader (screw you Arne Blankerts) - Refactored ZiProto - Removed runners `Python2` & `Python3` in favor of `Python`
7 lines
253 B
PHP
7 lines
253 B
PHP
<?php
|
|
|
|
require 'ncc';
|
|
$package_path = '/home/netkas/PhpstormProjects/ncc/tests/projects/lib/build/release/com.example.testlib.ncc';
|
|
|
|
$package_manager = new \ncc\Managers\PackageManager();
|
|
$package_manager->installPackage($package_path);
|