Skip to content

Commit 02299ad

Browse files
committed
Inited
0 parents  commit 02299ad

File tree

17 files changed

+2443
-0
lines changed

17 files changed

+2443
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/

.phpstorm.meta.php/di.meta.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
namespace PHPSTORM_META {
4+
override(\Billing\Infrastructure\DI\Container::get(''),
5+
map([
6+
'' => '@'
7+
])
8+
);
9+
}

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Installation
2+
------------
3+
4+
1. Run `composer install`
5+
2. Start PHP built-in web server: `composer serve`
6+
7+
Testing
8+
-------
9+
10+
Run `./vendor/bin/phpunit`

composer.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"require": {
3+
"php": "^7.1",
4+
"ext-pdo": "*",
5+
"ext-json": "*",
6+
"ext-pdo_sqlite": "*",
7+
"ramsey/uuid": "*",
8+
"moneyphp/money": "*",
9+
"ocramius/generated-hydrator": "*",
10+
"zendframework/zend-hydrator": "*"
11+
},
12+
"require-dev": {
13+
"phpunit/phpunit": "*"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"Billing\\": "src/"
18+
}
19+
},
20+
"autoload-dev": {
21+
"psr-4": {
22+
"Billing\\Tests\\": "tests/"
23+
}
24+
},
25+
"scripts": {
26+
"serve": "php -S 0.0.0.0:8080 -t public/"
27+
}
28+
}

0 commit comments

Comments
 (0)