-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.2 KB
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "alexecus/spawner",
"description": "Spawner is a PHP console application that lets you spawn boilerplate code for any component",
"type": "library",
"keywords": ["php", "boilerplate", "generator"],
"homepage": "https://github.com/alexecus/spawner",
"license": "MIT",
"authors": [
{
"name": "alexecus",
"email": "alex.tenepere@gmail.com",
"role": "Developer"
}
],
"require": {
"symfony/console": "^4.0",
"symfony/finder": "^4.0",
"twig/twig": "^2.0",
"php-di/php-di": "^6.0",
"symfony/filesystem": "^4.0",
"symfony/yaml": "^4.0",
"webmozart/path-util": "^2.3",
"doctrine/annotations": "^1.6"
},
"autoload": {
"psr-4": {
"Alexecus\\Spawner\\": "src/",
"Components\\": "components/"
}
},
"autoload-dev": {
"psr-4": {
"Alexecus\\Example\\": "example/",
"Alexecus\\Spawner\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7",
"kint-php/kint": "^2.2"
},
"scripts": {
"test": "phpunit --coverage-html .reports"
}
}