-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.18 KB
/
composer.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "oscarnevarezleal/laravel-sed",
"type": "library",
"description": "Larased CLI",
"version": "0.0.4",
"keywords": [
"laraboot",
"larased"
],
"license": "MIT",
"authors": [
{
"name": "Oscar Nevarez",
"email": "[email protected]"
}
],
"bin": [
"larased"
],
"autoload": {
"psr-4": {
"Laraboot\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests/"
},
"classmap": [
"tests"
]
},
"replace": {
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*"
},
"require": {
"php": "^7.3|^8.0",
"symfony/console": "^5.2.0",
"nikic/php-parser": "4.10.4"
},
"require-dev": {
"rector/rector": "^0.11",
"phpunit/phpunit": "^9.4",
"laravel/framework": "^8.0",
"facade/ignition": "^2.0",
"mockery/mockery": "^1.3.1",
"symfony/framework-bundle": "^5.2.0",
"symfony/dotenv": "^5.2.0",
"symfony/yaml": "^5.2",
"symfony/phpunit-bridge": "^5.2.0",
"symfony/form": "^5.2.0",
"symfony/workflow": "^5.2.0",
"symfony/debug-bundle": "^5.2",
"symfony/maker-bundle": "^1.11",
"symplify/easy-coding-standard": "^9.3"
}
}