This commit is contained in:
2026-03-20 18:51:29 -04:00
parent bd100d45b4
commit 2877529080
7 changed files with 20 additions and 38 deletions

View File

@@ -1,9 +1,9 @@
{
"name": "potter/template",
"description": "Potter Framework Component Template",
"name": "potter/container",
"description": "Potter Framework PSR-11 Container Implementation",
"version": "1.0.0",
"type": "library",
"homepage": "https://gitpotter.com/Potter/Template",
"homepage": "https://gitpotter.com/Potter/Container",
"license": "MIT",
"authors": [
{
@@ -14,7 +14,7 @@
],
"autoload": {
"psr-4": {
"Potter\\Template\\": "src/Potter/Template/"
"Potter\\Container\\": "src/Potter/Container/"
}
},
"minimum-stability": "stable",

View File

@@ -0,0 +1,7 @@
include.path=${php.global.include.path}
php.version=PHP_84
source.encoding=UTF-8
src.dir=src
tags.asp=false
tags.short=false
web.root=.

9
nbproject/project.xml Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>Container</name>
</data>
</configuration>
</project>

View File

@@ -1,8 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
abstract class AbstractTemplate implements TemplateInterface
{ }

View File

@@ -1,10 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
abstract class Template extends AbstractTemplate
{
use TemplateTrait;
}

View File

@@ -1,8 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
interface TemplateInterface
{ }

View File

@@ -1,8 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
trait TemplateTrait
{ }