Skip to content

Commit

Permalink
Merge pull request #2 from Micro-PHP/pre-release-1
Browse files Browse the repository at this point in the history
Pre release 1
  • Loading branch information
Asisyas authored Nov 23, 2022
2 parents d4fd943 + 6310013 commit 2886962
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.phpdoc/
docs/
vendor/
composer.lock
.phpunit.result.cache
Empty file modified LICENSE
100644 → 100755
Empty file.
6 changes: 4 additions & 2 deletions composer.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "micro/kernel",
"type": "library",
"description": "",
"version": "0.1",
"version": "1.0",
"license": "MIT",
"autoload": {
"psr-4": {
Expand All @@ -16,6 +16,8 @@
}
],
"require": {
"php": ">=8.0"
"php": ">=8.0",
"micro/dependency-injection": "^1",
"micro/event-emitter": "^1"
}
}
Empty file modified phpcs.xml
100644 → 100755
Empty file.
33 changes: 33 additions & 0 deletions phpdoc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor
configVersion="3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://www.phpdoc.org"
>
<title>Micro Framework: Kernel component</title>
<paths>
<output>docs/.build</output>
</paths>

<versions>
<version number="0.1">
<folder>src/</folder>
<api format="php">
<source dsn=".">
<!--1 or more repetitions:-->
<path>src/**/*Interface.php</path>
<!--<path>src/**/*ConfigurationInterface.php</path> -->
</source>
<!--Optional:-->
<ignore hidden="true" symlinks="true">
<path>tests/**/*</path>
</ignore>
<extensions>
<!--1 or more repetitions:-->
<extension>php</extension>
</extensions>
<visibility>public</visibility>
</api>
</version>
</versions>
</phpdocumentor>

0 comments on commit 2886962

Please sign in to comment.