Skip to content

Commit

Permalink
Merge pull request #138 from 8fold/uri-interface
Browse files Browse the repository at this point in the history
re-engineer: Next major
  • Loading branch information
joshbruce authored Nov 28, 2021
2 parents 9678d34 + d52a08f commit 4799364
Show file tree
Hide file tree
Showing 153 changed files with 3,181 additions and 3,965 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ yarn-error.log
.DS_Store
.nova

site-static-html/
site-static-html/public/

!site-dynamic-php/public/.gitignore
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
https://www.conventionalcommits.org/en/v1.0.0/
https://chris.beams.io/posts/git-commit/

The code found here is able to generate the same (or really close to it) site using multiple styles. Each style is held inside a directory; the names start with "Site." Each style has an associated read me file (listed in order of creation):

Expand Down Expand Up @@ -95,7 +96,7 @@ This frees me up a great deal to move about the cabin as I see fit.

### Analysis

General performance statistics and experiments can be found on [joshbruce.com](/web-development/site-stats).
General performance statistics and experiments can be found on [joshbruce.com](/web-development/site-stats/).

## Testing can't push to main

Expand Down
6 changes: 3 additions & 3 deletions amos
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ require __DIR__.'/vendor/autoload.php';

use Symfony\Component\Console\Application;

use JoshBruce\Site\SiteDynamic\Generator as DynamicGenerator;
use JoshBruce\Site\SiteStatic\Generator as StaticGenerator;
// use JoshBruce\Site\SiteDynamic\Generator as DynamicGenerator;
use JoshBruce\SiteStatic\Generator as StaticGenerator;

$application = new Application();

$application->add(new DynamicGenerator());
// $application->add(new DynamicGenerator());

$application->add(new StaticGenerator());

Expand Down
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
"authors": [],
"autoload": {
"psr-4": {
"JoshBruce\\Site\\": "./src"
"JoshBruce\\SiteDynamic\\": "./site-dynamic-php/src",
"JoshBruce\\SiteStatic\\": "./site-static-html/src"
}
},
"autoload-dev": {
"psr-4": {
"JoshBruce\\Site\\Tests\\": "./tests"
"JoshBruce\\SiteDynamic\\Tests\\": "./site-dynamic-php/tests",
"JoshBruce\\SiteStatic\\Tests\\": "./site-static-html/tests"
}
},
"config": {
Expand All @@ -19,7 +21,7 @@
"prefer-stable": true,
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.1.2",
"phpstan/phpstan": "^1.2.0",
"pestphp/pest": "^1.20"
},
"require": {
Expand All @@ -45,7 +47,7 @@
"@stan",
"@test"
],
"style": "./vendor/bin/phpcs --standard=phpcs.xml -p ./src",
"style": "./vendor/bin/phpcs --standard=phpcs.xml",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/pest"
},
Expand Down
Loading

0 comments on commit 4799364

Please sign in to comment.