Skip to content

Commit 2886962

Browse files
authored
Merge pull request #2 from Micro-PHP/pre-release-1
Pre release 1
2 parents d4fd943 + 6310013 commit 2886962

File tree

5 files changed

+39
-2
lines changed

5 files changed

+39
-2
lines changed

.gitignore

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.phpdoc/
2+
docs/
13
vendor/
24
composer.lock
35
.phpunit.result.cache

LICENSE

100644100755
File mode changed.

composer.json

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "micro/kernel",
33
"type": "library",
44
"description": "",
5-
"version": "0.1",
5+
"version": "1.0",
66
"license": "MIT",
77
"autoload": {
88
"psr-4": {
@@ -16,6 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=8.0"
19+
"php": ">=8.0",
20+
"micro/dependency-injection": "^1",
21+
"micro/event-emitter": "^1"
2022
}
2123
}

phpcs.xml

100644100755
File mode changed.

phpdoc.xml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<phpdocumentor
3+
configVersion="3"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xmlns="https://www.phpdoc.org"
6+
>
7+
<title>Micro Framework: Kernel component</title>
8+
<paths>
9+
<output>docs/.build</output>
10+
</paths>
11+
12+
<versions>
13+
<version number="0.1">
14+
<folder>src/</folder>
15+
<api format="php">
16+
<source dsn=".">
17+
<!--1 or more repetitions:-->
18+
<path>src/**/*Interface.php</path>
19+
<!--<path>src/**/*ConfigurationInterface.php</path> -->
20+
</source>
21+
<!--Optional:-->
22+
<ignore hidden="true" symlinks="true">
23+
<path>tests/**/*</path>
24+
</ignore>
25+
<extensions>
26+
<!--1 or more repetitions:-->
27+
<extension>php</extension>
28+
</extensions>
29+
<visibility>public</visibility>
30+
</api>
31+
</version>
32+
</versions>
33+
</phpdocumentor>

0 commit comments

Comments
 (0)