Skip to content

Commit 836bf86

Browse files
committed
coilpack with laravel 12
1 parent 6639381 commit 836bf86

File tree

2 files changed

+952
-2114
lines changed

2 files changed

+952
-2114
lines changed

composer.json

Lines changed: 68 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,71 @@
11
{
2-
"name": "expressionengine/coilpack",
3-
"description": "Harness the power of Laravel in ExpressionEngine",
4-
"keywords": [
5-
"expressionengine",
6-
"laravel",
7-
"coilpack"
8-
],
9-
"homepage": "https://github.com/expressionengine/coilpack",
10-
"license": "MIT",
11-
"authors": [{
12-
"name": "ExpressionEngine",
13-
"email": "hello@expressionengine.com",
14-
"role": "Developer"
15-
}],
16-
"require": {
17-
"php": ">= 8.1",
18-
"illuminate/contracts": "^9.0|^10.0|^11.0",
19-
"illuminate/database": "^9.0|^10.0|^11.0",
20-
"illuminate/support": "^9.0|^10.0|^11.0",
21-
"mll-lab/laravel-graphiql": "^3.2",
22-
"rcrowe/twigbridge": "^0.14.3",
23-
"rebing/graphql-laravel": "^9.2.0"
24-
},
25-
"require-dev": {
26-
"nunomaduro/collision": "^6.1",
27-
"nunomaduro/larastan": "^2.0.1",
28-
"orchestra/testbench": "^7.0",
29-
"pestphp/pest": "^1.21",
30-
"pestphp/pest-plugin-laravel": "^1.1",
31-
"phpstan/extension-installer": "^1.1",
32-
"phpstan/phpstan-deprecation-rules": "^1.0",
33-
"phpstan/phpstan-phpunit": "^1.0",
34-
"phpunit/phpunit": "^9.5"
35-
},
36-
"autoload": {
37-
"psr-4": {
38-
"Expressionengine\\Coilpack\\": "src",
39-
"Expressionengine\\Coilpack\\Database\\Factories\\": "database/factories"
40-
}
41-
},
42-
"autoload-dev": {
43-
"psr-4": {
44-
"Expressionengine\\Coilpack\\Tests\\": "tests"
45-
}
46-
},
47-
"scripts": {
48-
"analyse": "vendor/bin/phpstan analyse",
49-
"test": "vendor/bin/pest",
50-
"test-coverage": "vendor/bin/pest --coverage"
51-
},
52-
"config": {
53-
"sort-packages": true,
54-
"allow-plugins": {
55-
"pestphp/pest-plugin": true,
56-
"phpstan/extension-installer": true
57-
}
58-
},
59-
"extra": {
60-
"laravel": {
61-
"providers": [
62-
"Expressionengine\\Coilpack\\CoilpackServiceProvider"
63-
],
64-
"aliases": {
65-
"Coilpack": "Expressionengine\\Coilpack\\Facades\\Coilpack"
66-
}
67-
}
2+
"name": "expressionengine/coilpack",
3+
"description": "Harness the power of Laravel in ExpressionEngine",
4+
"keywords": [
5+
"expressionengine",
6+
"laravel",
7+
"coilpack"
8+
],
9+
"homepage": "https://github.com/expressionengine/coilpack",
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "ExpressionEngine",
14+
"email": "hello@expressionengine.com",
15+
"role": "Developer"
6816
}
17+
],
18+
"require": {
19+
"php": ">= 8.1",
20+
"illuminate/contracts": "^9.0|^10.0|>=11.0",
21+
"illuminate/database": "^9.0|^10.0|>=11.0",
22+
"illuminate/support": "^9.0|^10.0|>=11.0",
23+
"mll-lab/laravel-graphiql": "^3.2",
24+
"rcrowe/twigbridge": "^0.14.3",
25+
"rebing/graphql-laravel": "^9.2.0"
26+
},
27+
"require-dev": {
28+
"nunomaduro/collision": "^6.1",
29+
"nunomaduro/larastan": "^2.0.1",
30+
"orchestra/testbench": "^7.0",
31+
"pestphp/pest": "^1.21",
32+
"pestphp/pest-plugin-laravel": "^1.1",
33+
"phpstan/extension-installer": "^1.1",
34+
"phpstan/phpstan-deprecation-rules": "^1.0",
35+
"phpstan/phpstan-phpunit": "^1.0",
36+
"phpunit/phpunit": "^9.5"
37+
},
38+
"autoload": {
39+
"psr-4": {
40+
"Expressionengine\\Coilpack\\": "src",
41+
"Expressionengine\\Coilpack\\Database\\Factories\\": "database/factories"
42+
}
43+
},
44+
"autoload-dev": {
45+
"psr-4": {
46+
"Expressionengine\\Coilpack\\Tests\\": "tests"
47+
}
48+
},
49+
"scripts": {
50+
"analyse": "vendor/bin/phpstan analyse",
51+
"test": "vendor/bin/pest",
52+
"test-coverage": "vendor/bin/pest --coverage"
53+
},
54+
"config": {
55+
"sort-packages": true,
56+
"allow-plugins": {
57+
"pestphp/pest-plugin": true,
58+
"phpstan/extension-installer": true
59+
}
60+
},
61+
"extra": {
62+
"laravel": {
63+
"providers": [
64+
"Expressionengine\\Coilpack\\CoilpackServiceProvider"
65+
],
66+
"aliases": {
67+
"Coilpack": "Expressionengine\\Coilpack\\Facades\\Coilpack"
68+
}
69+
}
70+
}
6971
}

0 commit comments

Comments
 (0)