Skip to content

Commit

Permalink
Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
williamniemiec committed Jun 10, 2022
1 parent f59ab50 commit 273cc75
Show file tree
Hide file tree
Showing 3,039 changed files with 249,738 additions and 56 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
13 changes: 1 addition & 12 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,5 @@ jobs:
run: |
rm -rf vendor
composer install
- name: Generate key
run: php artisan key:generate
- name: Link Storage
run: php artisan storage:link
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit --stop-on-failure
13 changes: 1 addition & 12 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,5 @@ jobs:
run: |
rm -rf vendor
composer install
- name: Generate key
run: php artisan key:generate
- name: Link Storage
run: php artisan storage:link
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit --stop-on-failure
13 changes: 1 addition & 12 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,5 @@ jobs:
run: |
rm -rf vendor
composer install
- name: Generate key
run: php artisan key:generate
- name: Link Storage
run: php artisan storage:link
- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit --stop-on-failure
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
}
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
"heroku/heroku-buildpack-php": "*",
"phpunit/phpunit": "6.4.*"
}
}
5 changes: 4 additions & 1 deletion panel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@
"panel\\util\\" : "src/main/php/util/",
"panel\\views\\" : "src/main/php/views/"
}
}
},
"require-dev": {
"phpunit/phpunit": "6.4.*"
}
}
1 change: 1 addition & 0 deletions panel/vendor/bin/phpunit
540 changes: 540 additions & 0 deletions panel/vendor/composer/autoload_classmap.php

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions panel/vendor/composer/autoload_files.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

// autoload_files.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

return array(
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
);
5 changes: 5 additions & 0 deletions panel/vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
$baseDir = dirname($vendorDir);

return array(
'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'),
'panel\\views\\' => array($baseDir . '/src/main/php/views'),
'panel\\util\\' => array($baseDir . '/src/main/php/util'),
'panel\\repositories\\' => array($baseDir . '/src/main/php/repositories'),
'panel\\domain\\' => array($baseDir . '/src/main/php/domain'),
'panel\\dao\\' => array($baseDir . '/src/main/php/dao'),
'panel\\controllers\\' => array($baseDir . '/src/main/php/controllers'),
'panel\\config\\' => array($baseDir . '/src/main/php/config'),
'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'),
'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
);
18 changes: 18 additions & 0 deletions panel/vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,24 @@ public static function getLoader()

$loader->register(true);

if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit4630986360581f4723d10687d24d5d01::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire4630986360581f4723d10687d24d5d01($fileIdentifier, $file);
}

return $loader;
}
}

function composerRequire4630986360581f4723d10687d24d5d01($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;

$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
}
}
584 changes: 584 additions & 0 deletions panel/vendor/composer/autoload_static.php

Large diffs are not rendered by default.

Loading

0 comments on commit 273cc75

Please sign in to comment.