Skip to content

Commit d27671a

Browse files
committed
TDD basic parser
1 parent be75818 commit d27671a

File tree

10 files changed

+1562
-340
lines changed

10 files changed

+1562
-340
lines changed

composer.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
{
2+
"name": "laravel-shift/blueprint",
3+
"type": "library",
4+
"description": "An expressive, human readable code generation tool.",
5+
"keywords": [
6+
"framework",
7+
"laravel"
8+
],
9+
"license": "MIT",
210
"require": {
3-
"symfony/yaml": "^4.3",
4-
"illuminate/support": "^5.8"
11+
"symfony/yaml": "^4.3"
12+
},
13+
"require-dev": {
14+
"phpunit/phpunit": "^7.5",
15+
"mockery/mockery": "^1.2"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"Blueprint\\": "src/"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"Tests\\": "tests/"
25+
}
526
}
627
}

0 commit comments

Comments
 (0)