Skip to content

Commit

Permalink
Remove develop dir
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Feb 19, 2024
1 parent 393f34f commit 99481ac
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 117 deletions.
22 changes: 11 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@
_meta/

# Ignore personal config files (dev)
develop/.env
app/.env

# Ignore lock files
composer.lock

# Ignore log, cache, sessions and storage directories
develop/cache/*
develop/database/*
develop/logs/*
develop/sessions/*
develop/storage/*
app/cache/*
app/database/*
app/logs/*
app/sessions/*
app/storage/*

# Unignore log, cache, sessions and storage .gitkeeps
!develop/cache/.gitkeep
!develop/database/.gitkeep
!develop/logs/.gitkeep
!develop/sessions/.gitkeep
!develop/storage/.gitkeep
!app/cache/.gitkeep
!app/database/.gitkeep
!app/logs/.gitkeep
!app/sessions/.gitkeep
!app/storage/.gitkeep

# Ignore Composer vendor
vendor/
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions app/tests/AdminTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

namespace UserFrosting\Sprinkle\Admin\Tests;

use UserFrosting\Develop\Admin\App;
use UserFrosting\Sprinkle\Admin\Admin;
use UserFrosting\Testing\TestCase;

/**
* Test case with Admin as main sprinkle
*/
class AdminTestCase extends TestCase
{
protected string $mainSprinkle = App::class;
protected string $mainSprinkle = Admin::class;
}
4 changes: 2 additions & 2 deletions bakery
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
}

use UserFrosting\Bakery\Bakery;
use UserFrosting\Develop\Admin\App;
use UserFrosting\Sprinkle\Admin\Admin;

/**
* Get and run CLI App
*/
$bakery = new Bakery(App::class);
$bakery = new Bakery(Admin::class);
$bakery->run();
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Develop\\Admin\\": "develop/",
"UserFrosting\\Sprinkle\\Admin\\Tests\\": "app/tests/"
}
}
Expand Down
75 changes: 0 additions & 75 deletions develop/App.php

This file was deleted.

18 changes: 0 additions & 18 deletions develop/config/default.php

This file was deleted.

3 changes: 0 additions & 3 deletions develop/templates/content/scripts_site.html.twig

This file was deleted.

3 changes: 0 additions & 3 deletions develop/templates/content/stylesheets_site.html.twig

This file was deleted.

4 changes: 2 additions & 2 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
// First off, we'll grab the Composer dependencies
require_once __DIR__ . '/../vendor/autoload.php';

use UserFrosting\Develop\Admin\App;
use UserFrosting\Sprinkle\Admin\Admin;
use UserFrosting\UserFrosting;

$uf = new UserFrosting(App::class);
$uf = new UserFrosting(Admin::class);
$uf->run();

0 comments on commit 99481ac

Please sign in to comment.