-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.09 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.09 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
45
46
47
{
"name": "dnj/laravel-ticketing",
"description": "Package used for the ticketing system.",
"type": "library",
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.1",
"orchestra/testbench": "^7.0",
"dnj/local-filesystem": "^1.0",
"dnj/tmp-filesystem": "^1.1",
"dnj/laravel-user-logger": "dev-master"
},
"autoload": {
"psr-4": {
"dnj\\Ticket\\": "src/",
"dnj\\Ticket\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"dnj\\Ticket\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "vendor/bin/phpstan analyze",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:types",
"@test:phpunit",
"@test:codestyle"
]
},
"extra": {
"laravel": {
"providers": [
"dnj\\Ticket\\TicketServiceProvider"
]
}
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true
}