Skip to content

Commit 871fc3c

Browse files
committed
Update keywords in composer.json to include "The-3Labs-Team".
1 parent 5e1b9e6 commit 871fc3c

File tree

1 file changed

+82
-82
lines changed

1 file changed

+82
-82
lines changed

composer.json

Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
{
2-
"name": "the-3labs-team/laravel-readability",
3-
"description": "Laravel Readability is a supercharged PHP client that makes it easy to extract and manipulate the main content of a web page.",
4-
"keywords": [
5-
"The 3Labs Team",
6-
"laravel",
7-
"laravel-readability"
2+
"name": "the-3labs-team/laravel-readability",
3+
"description": "Laravel Readability is a supercharged PHP client that makes it easy to extract and manipulate the main content of a web page.",
4+
"keywords": [
5+
"The-3Labs-Team",
6+
"laravel",
7+
"laravel-readability"
8+
],
9+
"homepage": "https://github.com/the-3labs-team/laravel-readability",
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "Stefano Novelli",
14+
"email": "murdercode@gmail.com",
15+
"role": "Developer"
16+
}
17+
],
18+
"require": {
19+
"php": "^8.1",
20+
"fivefilters/readability.php": "^3.1",
21+
"illuminate/contracts": "^10.0",
22+
"spatie/laravel-package-tools": "^1.14.0"
23+
},
24+
"require-dev": {
25+
"laravel/pint": "^1.0",
26+
"nunomaduro/collision": "^7.8",
27+
"larastan/larastan": "^2.0.1",
28+
"orchestra/testbench": "^8.8",
29+
"pestphp/pest": "^2.20",
30+
"pestphp/pest-plugin-arch": "^2.5",
31+
"pestphp/pest-plugin-laravel": "^2.0",
32+
"phpstan/extension-installer": "^1.1",
33+
"phpstan/phpstan-deprecation-rules": "^1.0",
34+
"phpstan/phpstan-phpunit": "^1.0"
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"The3LabsTeam\\Readability\\": "src/",
39+
"The3LabsTeam\\Readability\\Database\\Factories\\": "database/factories/",
40+
"fiveFilters\\Readability\\": "vendor/fivefilters/readability.php/src/"
41+
}
42+
},
43+
"autoload-dev": {
44+
"psr-4": {
45+
"The3LabsTeam\\Readability\\Tests\\": "tests/",
46+
"Workbench\\App\\": "workbench/app/"
47+
}
48+
},
49+
"scripts": {
50+
"post-autoload-dump": "@composer run prepare",
51+
"clear": "@php vendor/bin/testbench package:purge-laravel-readability --ansi",
52+
"prepare": "@php vendor/bin/testbench package:discover --ansi",
53+
"build": [
54+
"@composer run prepare",
55+
"@php vendor/bin/testbench workbench:build --ansi"
856
],
9-
"homepage": "https://github.com/the-3labs-team/laravel-readability",
10-
"license": "MIT",
11-
"authors": [
12-
{
13-
"name": "Stefano Novelli",
14-
"email": "murdercode@gmail.com",
15-
"role": "Developer"
16-
}
57+
"start": [
58+
"Composer\\Config::disableProcessTimeout",
59+
"@composer run build",
60+
"@php vendor/bin/testbench serve"
1761
],
18-
"require": {
19-
"php": "^8.1",
20-
"fivefilters/readability.php": "^3.1",
21-
"illuminate/contracts": "^10.0",
22-
"spatie/laravel-package-tools": "^1.14.0"
23-
},
24-
"require-dev": {
25-
"laravel/pint": "^1.0",
26-
"nunomaduro/collision": "^7.8",
27-
"larastan/larastan": "^2.0.1",
28-
"orchestra/testbench": "^8.8",
29-
"pestphp/pest": "^2.20",
30-
"pestphp/pest-plugin-arch": "^2.5",
31-
"pestphp/pest-plugin-laravel": "^2.0",
32-
"phpstan/extension-installer": "^1.1",
33-
"phpstan/phpstan-deprecation-rules": "^1.0",
34-
"phpstan/phpstan-phpunit": "^1.0"
35-
},
36-
"autoload": {
37-
"psr-4": {
38-
"The3LabsTeam\\Readability\\": "src/",
39-
"The3LabsTeam\\Readability\\Database\\Factories\\": "database/factories/",
40-
"fiveFilters\\Readability\\": "vendor/fivefilters/readability.php/src/"
41-
}
42-
},
43-
"autoload-dev": {
44-
"psr-4": {
45-
"The3LabsTeam\\Readability\\Tests\\": "tests/",
46-
"Workbench\\App\\": "workbench/app/"
47-
}
48-
},
49-
"scripts": {
50-
"post-autoload-dump": "@composer run prepare",
51-
"clear": "@php vendor/bin/testbench package:purge-laravel-readability --ansi",
52-
"prepare": "@php vendor/bin/testbench package:discover --ansi",
53-
"build": [
54-
"@composer run prepare",
55-
"@php vendor/bin/testbench workbench:build --ansi"
56-
],
57-
"start": [
58-
"Composer\\Config::disableProcessTimeout",
59-
"@composer run build",
60-
"@php vendor/bin/testbench serve"
61-
],
62-
"analyse": "vendor/bin/phpstan analyse",
63-
"test": "vendor/bin/pest",
64-
"test-coverage": "vendor/bin/pest --coverage",
65-
"format": "vendor/bin/pint"
66-
},
67-
"config": {
68-
"sort-packages": true,
69-
"allow-plugins": {
70-
"pestphp/pest-plugin": true,
71-
"phpstan/extension-installer": true
72-
}
73-
},
74-
"extra": {
75-
"laravel": {
76-
"providers": [
77-
"The3LabsTeam\\Readability\\ReadabilityServiceProvider"
78-
],
79-
"aliases": {
80-
"Readability": "The3LabsTeam\\Readability\\Facades\\Readability"
81-
}
82-
}
83-
},
84-
"minimum-stability": "dev",
85-
"prefer-stable": true
62+
"analyse": "vendor/bin/phpstan analyse",
63+
"test": "vendor/bin/pest",
64+
"test-coverage": "vendor/bin/pest --coverage",
65+
"format": "vendor/bin/pint"
66+
},
67+
"config": {
68+
"sort-packages": true,
69+
"allow-plugins": {
70+
"pestphp/pest-plugin": true,
71+
"phpstan/extension-installer": true
72+
}
73+
},
74+
"extra": {
75+
"laravel": {
76+
"providers": [
77+
"The3LabsTeam\\Readability\\ReadabilityServiceProvider"
78+
],
79+
"aliases": {
80+
"Readability": "The3LabsTeam\\Readability\\Facades\\Readability"
81+
}
82+
}
83+
},
84+
"minimum-stability": "dev",
85+
"prefer-stable": true
8686
}

0 commit comments

Comments
 (0)