Skip to content

Commit 2abcfc2

Browse files
committed
Package way
1 parent 483f457 commit 2abcfc2

29 files changed

+189
-649
lines changed

.env.sample

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/.idea
22
/vendor
3-
/logs
3+
/tests/logs
44
/.env
55
/testit.tests.php

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Grupo de PHP da Zona da Mata
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

app/src/App.php

Lines changed: 0 additions & 95 deletions
This file was deleted.
File renamed without changes.

bootstrap/index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
require __DIR__ . '/function.php';

composer.json

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,36 @@
11
{
2-
"name": "fagoc/test",
3-
"type": "library",
4-
"license": "MIT",
2+
"name": "phpzm/test",
3+
"description": "Simples Test package",
54
"minimum-stability": "dev",
5+
"keywords": [
6+
"php",
7+
"framework",
8+
"api",
9+
"simples",
10+
"test"
11+
],
12+
"homepage": "https://github.com/phpzm/test",
13+
"license": "MIT",
14+
"version": "0.1.0",
15+
"type": "package",
16+
"authors": [
17+
{
18+
"name": "William",
19+
"email": "[email protected]"
20+
}
21+
],
622
"autoload": {
723
"psr-4": {
8-
"Testit\\": "app/src/",
9-
"Tests\\": "tests/"
24+
"Simples\\Test\\": "src/"
1025
},
11-
"files": ["app/bootstrap/function.php"]
26+
"files": [
27+
"bootstrap/index.php"
28+
]
1229
},
1330
"require": {
31+
"php": ">=7.0",
1432
"guzzlehttp/guzzle": "^6.2@dev",
15-
"phpzm/helper": "^1.5"
33+
"phpzm/helper": "^1.5",
34+
"phpzm/kernel": "^1.8"
1635
}
1736
}

0 commit comments

Comments
 (0)