-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "yediyuz/dev-tools",
"description": "Yediyuz Development Tools",
"license": "MIT",
"homepage": "https://github.com/yediyuz/dev-tools",
"autoload": {
"psr-4": {
"Yediyuz\\DevTools\\": "src/"
}
},
"authors": [
{
"name": "Mert Aşan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"jetbrains/phpstorm-attributes": "^1.0",
"spatie/ray": "^1.39",
"friendsofphp/php-cs-fixer": "^3.29",
"illuminate/support": "^8.0|^9.0|^10.10|^11.0",
"illuminate/collections": "^8.0|^9.0|^10.10|^11.0"
},
"require-dev": {
"pestphp/pest": "^1.23|^2.4"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}