Skip to content

Commit f64dc05

Browse files
committed
First
0 parents  commit f64dc05

12 files changed

+4535
-0
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
root = true
3+
4+
[*]
5+
end_of_line = lf
6+
insert_final_newline = true
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
trim_trailing_whitespace = true

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
vendor/
2+
.*
3+
!.editorconfig
4+
!.gitignore
5+
!.php-cs-fixer.dist.php

.php-cs-fixer.dist.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in([
5+
__DIR__ . '/src',
6+
__DIR__ . '/tests',
7+
])
8+
;
9+
10+
$config = new PhpCsFixer\Config();
11+
12+
return $config->setRules([
13+
'@PSR1' => true,
14+
'@PSR2' => true,
15+
'no_unused_imports' => true,
16+
'single_blank_line_before_namespace' => true,
17+
])
18+
->setFinder($finder)
19+
;

LICENSE.txt

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
# Loop

bootstrap.php

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

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "thenlabs/loop",
3+
"license": "MIT",
4+
"authors": [
5+
{
6+
"name": "Andy Daniel Navarro Taño",
7+
"email": "andaniel05@gmail.com"
8+
}
9+
],
10+
"require": {
11+
"symfony/event-dispatcher": ">=4.4"
12+
},
13+
"require-dev": {
14+
"thenlabs/pyramidal-tests": "2.0.x-dev",
15+
"friendsofphp/php-cs-fixer": "^3.2"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"ThenLabs\\Loop\\": "src/"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"ThenLabs\\Loop\\Tests\\": "tests/"
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)